.cl-navigation {
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}
.cl-nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .cl-nav-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .cl-nav-container {
        padding: 0 2rem;
    }
}
.cl-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}
.cl-nav-logo {
    display: flex;
    align-items: center;
}
.cl-nav-logo img {
    height: 3rem;
    width: auto;
}

.cl-nav-logo a {
    display: block;
    line-height: 0;
}
.cl-nav-menu {
    display: none;
    flex: 1;
    margin-left: 1rem;
}
@media (min-width: 768px) {
    .cl-nav-menu {
        display: block;
    }
}
.cl-nav-links-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.5rem 0;
}
.cl-nav-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.25rem;
    justify-content: flex-end;
    min-width: max-content;
}
.cl-nav-item {
    position: relative;
}
.cl-nav-link {
    color: #6b7280;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}
.cl-nav-link:hover {
    color: #1e3a8a;
    text-decoration: none;
    border-bottom: 2px solid #1e40af;
}
.cl-nav-link.active {
    color: #1e3a8a;
    font-weight: 600;
    border-bottom: 2px solid #1e40af;
}
.cl-nav-cta {
    background-color: #1e40af;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: block;
    white-space: nowrap;
}
.cl-nav-cta:hover {
    background-color: #1e3a8a;
    color: white;
    text-decoration: none;
}
.cl-dropdown {
    position: relative;
}
.cl-navigation .cl-dropdown:hover .cl-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cl-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 0.375rem;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    display: block;
}
.cl-dropdown-menu .cl-nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0;
    border-bottom: none;
}
.cl-dropdown-menu .cl-nav-link:hover {
    background-color: #f3f4f6;
    border-bottom: none;
}
.cl-dropdown-arrow {
    margin-left: 0.25rem;
    font-size: 0.625rem;
}

/* Mobile Menu Toggle Button */
.cl-mobile-menu-toggle {
    display: block;
}
@media (min-width: 768px) {
    .cl-mobile-menu-toggle {
        display: none;
    }
}
.cl-mobile-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}
.cl-hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}
.cl-hamburger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #4b5563;
    border-radius: 1px;
    transition: all 0.3s ease;
}
.cl-mobile-menu-btn:hover .cl-hamburger-line {
    background-color: #1e3a8a;
}

/* Mobile Menu */
.cl-mobile-menu {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    overflow-y: auto;
    z-index: 40;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.cl-mobile-menu.active {
    display: block;
}
.cl-mobile-menu-content {
    padding: 1rem;
}
.cl-mobile-nav-item {
    border-bottom: 1px solid #e5e7eb;
}
.cl-mobile-nav-item:last-child {
    border-bottom: none;
}
.cl-mobile-nav-link,
.cl-mobile-nav-cta {
    display: block;
    padding: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.cl-mobile-nav-link {
    color: #6b7280;
}
.cl-mobile-nav-link:hover {
    color: #1e3a8a;
    background-color: #f9fafb;
}
.cl-mobile-nav-link.active {
    color: #1e3a8a;
    font-weight: 600;
}
.cl-mobile-nav-cta {
    background-color: #1e40af;
    color: white;
    border-radius: 0.25rem;
    text-align: center;
}
.cl-mobile-nav-cta:hover {
    background-color: #1e3a8a;
    color: white;
}
.cl-mobile-dropdown-content {
    padding-left: 1rem;
    display: none;
}
.cl-mobile-dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
}
.cl-mobile-dropdown-content a:last-child {
    border-bottom: none;
}
.cl-mobile-dropdown-content a:hover {
    color: #1e3a8a;
    background-color: #f9fafb;
}

@media (min-width: 768px) {
    .cl-mobile-menu {
        display: none !important;
    }
}