/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #333;
}

header {
    background-color: #0066cc;
    color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
}

nav {
    display: flex;
    justify-content: space-between; /* Space between the navigation groups */
    align-items: center;
    margin-top: 10px;
    padding: 0 20px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background-color: #004b99;
    border-radius: 5px;
}

.main-nav {
    margin-left: auto; /* Move main navigation to the right */
}

.contact-nav {
    margin-left: 20px; /* Keep contact nav to the far right */
}

main {
    flex: 1;
    padding: 20px;
    animation: fadeIn 2s ease-in-out;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-in-out;
}

section h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 5px;
}

section p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.director {
    margin-bottom: 20px;
}

.director h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: #004b99;
}

footer {
    background-color: #0066cc;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
    animation: fadeIn 1s ease-in-out;
}

footer p {
    margin: 0;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
