/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    border-radius: 0px 0px 15px 15px;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    vertical-align: middle;
    margin-right: 10px;
}

.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
    margin-left: 20px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
    font-weight: bold;
}

.nav-links li a:hover {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-content {
    flex: 1;
    text-align: center;
}

.main-image {
    flex: 1;
}
/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

/* IFrame Styles */
iframe {
    display: block;
    margin-top: 20px;
}

/* Semantic Elements Styles */
header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0px;
    border-radius: 20px;
    margin-top: 40px;
}

nav {
    background-color: #eee;
    padding: 10px;
}

section {
    padding: 20px;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

article {
    margin-bottom: 20px;
}

aside {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    width: 50%;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

form fieldset {
    width: 100%;
}

form input[type="text"],
form input[type="email"],
form textarea,
form select {
    width: 100%;
    max-width:97%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form input[type="submit"],
form input[type="reset"] {
    margin-top: 10px;
}
.footer {
    text-align: center;
    margin-top: 50px;
    padding: 10px 0;
    background-color: #333;
    color: #fff;
    border-radius: 20px 20px 0px 0px;
    font-weight: bold;
    font-size: 20px;
}
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .navbar {
        padding: 10px;
    }

    .nav-links li {
        display: block;
        margin-left: 0;
        margin-top: 10px;
    }

    .content {
        padding: 0 10px;
    }

    .main-image {
        width: 100%;
    }

    form {
        width: 95%;
    }
}