* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar .logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
}

.navbar.scrolled .logo, .navbar.scrolled ul li a {
    color: #1a2a6c;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1615485240384-55248c829c7a?auto=format&fit=crop&w=1200') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    letter-spacing: 5px;
}

.content-section {
    padding: 4rem 10%;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.reverse .grid-container {
    direction: rtl;
}

.reverse .text-box {
    direction: ltr;
}

.image-box img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.text-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2a6c;
}

.quote-section {
    background-color: #1a2a6c;
    color: white;
    padding: 5rem 10%;
    text-align: center;
}

.quote-container blockquote {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #eee;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    .reverse .grid-container {
        direction: ltr;
    }
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links ul {
        flex-direction: column;
        padding: 1rem 5%;
    }

    .nav-links ul li {
        margin: 1rem 0;
        margin-left: 0;
    }

    .nav-links ul li a {
        color: #1a2a6c !important;
    }

    .grid-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reverse .grid-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .content-section {
        padding: 3rem 5%;
    }
}