@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    background: #2E67B2;
    display: flex;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.navbar {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
    position: relative;
}

.navbar a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.navbar a:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

.contact-section {
    padding: 100px 20px 50px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-container h1 {
    font-size: 36px;
    color: #2E67B2;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #2E67B2;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #2E67B2;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #1b4a80;
}

.contact-info, .contact-map {
    width: 100%;
    max-width: 800px;
    margin-bottom: 40px;
    text-align: left;
}

.contact-info h2, .contact-map h2 {
    font-size: 28px;
    color: #2E67B2;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-map iframe {
    width: 100%;
    border: none;
    border-radius: 5px;
}

.footer {
    background-color: #2E67B2;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    text-align: center;
}

.footer-logo .logo {
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.footer-contact {
    flex: 1;
    text-align: right;
}

.footer-contact h3,
.footer-contact p {
    margin: 5px 0;
}

.footer-contact p {
    font-size: 14px;
}

.social-links {
    flex: 1;
    text-align: left;
}

.social-links h3 {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ddd;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-contact {
        text-align: center;
    }
    .social-links {
        text-align: center;
        margin-bottom: 20px;
    }
}
