.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo and Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    position: relative;
    width: 80%;
    height: 40%;
    background-color: #0056d2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    background: transparent;
}

.logo-img {
    width: 100px;
    height: 30px;
}

.logo-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff9800;
    border-radius: 50%;
    top: 0;
    right: 0;
    transform: translate(0, -25%);
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
    color: #212121;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #212121;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0056d2;
}

.nav-links .active a {
    color: #154281 !important;
}

.nav-links a.active {
    color: #0056d2;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-size: inherit;
    font-weight: 500;
    color: #212121;
    cursor: pointer;
    padding: 0;
}

.chevron-down {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    min-width: 200px;
    margin-top: 8px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    list-style: none;
    padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #212121;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #0056d2;
    color: white;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #004bb9;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    position: absolute;
    height: 2px;
    width: 24px;
    background-color: #212121;
    transition: transform 0.3s;
}

.hamburger {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger::before,
.hamburger::after {
    content: "";
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: white;
    border-top: 1px solid #f0f0f0;
    padding: 16px;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 8px;
}

.mobile-nav-links a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #212121;
    font-weight: 500;
    border-radius: 6px;
}

.mobile-nav-links a.active {
    color: #0056d2;
}

.mobile-nav-links a:hover {
    background-color: #f5f5f5;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    font-size: inherit;
    font-weight: 500;
    color: #212121;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: left;
}

.mobile-dropdown-toggle:hover {
    background-color: #f5f5f5;
}

.mobile-chevron {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s;
}

.mobile-dropdown.open .mobile-chevron {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 16px;
    margin-top: 8px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu a {
    padding: 8px 12px;
}

.mobile-cta {
    margin-top: 16px;
}

.mobile-cta .cta-button {
    display: block;
    text-align: center;
}

/* Main content */
main {
    padding: 40px 0;
    background-color: #f3f3f3;
    min-height: calc(100vh - 80px);
}

main h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-desktop,
    .navbar .cta-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Show mobile menu when open class is added */
    .navbar.open .mobile-menu {
        display: block;
    }

    /* Transform hamburger to X when menu is open */
    .navbar.open .hamburger {
        background-color: transparent;
    }

    .navbar.open .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .navbar.open .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}
