.custom-content {
    color: rgba(19, 78, 74, 0.8);
    font-size: 18px;
    line-height: 1.5;
    font-style: normal;
    font-weight: 500;

    strong {
        font-weight: 700;
        color: #134e4a;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 3rem;
        font-weight: 700;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    h2 {
        font-size: 2rem;
        line-height: 2.5rem;
        font-weight: 700;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: 700;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    h4 {
        font-size: 1.25rem;
        line-height: 1.75rem;
        font-weight: 700;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    h5 {
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 700;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    h6 {
        font-size: 0.875rem;
        line-height: 1.375rem;
        font-weight: 700;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    p {
        margin-bottom: 1rem;
    }

    ul {
        margin-bottom: 1rem;
        margin-left: 1.5rem;
    }

    li {
        margin-bottom: 0.5rem;
        list-style-type: disc;
    }

    a {
        color: #134e4a;
        text-decoration: underline;
    }
}

/* Dropdown Menu Styles */
.nav-dropdown-item {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 380px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(19, 78, 74, 0.1), 0 8px 10px -6px rgba(19, 78, 74, 0.08);
    list-style: none;
    margin: 0;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 12px;
    pointer-events: none;
    overflow: hidden;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #14b8a6 0%, #134e4a 50%, #14b8a6 100%);
}

.nav-dropdown-menu.nav-dropdown-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hover support for dropdown */
.nav-dropdown-item:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-item:hover .nav-dropdown-button {
    transform: rotate(180deg);
}

.nav-dropdown-menu-item {
    margin: 0;
    padding: 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown-menu-item:last-child {
    border-bottom: none;
}

.nav-dropdown-menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #14b8a6;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
}

.nav-dropdown-menu-item:hover::after {
    width: 100%;
}

.nav-dropdown-menu-item a {
    display: block;
    padding: 16px 20px;
    color: #134e4a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background-color: transparent;
}

.nav-dropdown-menu-item a:hover {
    background-color: rgba(20, 184, 166, 0.1);
    color: #134e4a;
    padding-left: 24px;
}

.nav-dropdown-button {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-item .nav-dropdown-button[aria-expanded="true"] {
    transform: rotate(180deg);
}

