:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #9333ea;
    --purple-dark: #7e22ce;
    --navy: #0f172a;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(236, 72, 153, 0.3);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle at top, rgba(236, 72, 153, 0.1), rgba(147, 51, 234, 0.05));
    min-height: 100vh;
    color: var(--text-dark);
}

.page-wrapper {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding-bottom: 0rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(15px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient-pink-purple {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: white;
}

.btn-gradient-pink-purple:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.25);
    color: white;
}

.btn-outline-pink {
    border: 2px solid var(--pink);
    color: var(--pink);
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-outline-pink:hover {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.25);
}

header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.mobile-nav-toggle {
    display: none;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 0.9rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle.active {
    background: linear-gradient(135deg, #db2777, #7e22ce);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 996;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.nav-bar {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.95), rgba(147, 51, 234, 0.95));
    padding: 0.75rem 0;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    position: sticky;
    top: 80px;
    z-index: 1055;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-menu>li>a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-menu>li.has-dropdown>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    min-width: 240px;
    border-radius: 1rem;
    border: 2px solid var(--pink);
    box-shadow: 0 20px 45px rgba(236, 72, 153, 0.2);
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.3s ease;
    max-height: 420px;
    overflow-y: auto;
    z-index: 1060;
}

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

.nav-dropdown a {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-dropdown a:hover {
    background: linear-gradient(90deg, #fce7f3 0%, #f3e8ff 100%);
    color: var(--pink);
    padding-left: 1.5rem;
}

.hero-section {
    padding: 1rem 0 1rem;
}

.hero-card {
    padding: 2rem;
}

.hero-card h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb .link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb .link:hover {
    color: var(--pink);
}

.content-card {
    padding: 3rem;
    margin-top: 0rem;
    border: 2px solid var(--border-color);
}

.content-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-card .last-revised {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(236, 72, 153, 0.05);
    border-left: 4px solid var(--pink);
    border-radius: 0.5rem;
}

.content-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-card strong {
    color: var(--pink);
    font-weight: 600;
}

.content-card ol,
.content-card ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-card li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.content-card a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.content-card a:hover {
    color: var(--purple);
    text-decoration: underline;
}

footer {
    background: #0b1120;
    color: rgba(255, 255, 255, 0.85);
}

footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

footer a:hover {
    color: var(--pink);
}

@media (min-width: 768px) {
    .nav-bar {
        display: block !important;
        position: sticky !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0.75rem 0 !important;
    }

    .mobile-nav-overlay {
        display: none !important;
        pointer-events: none !important;
    }

    .mobile-nav-toggle {
        display: none;
    }
}

@media (max-width: 767px) {
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu>li.has-dropdown>a::after {
        position: absolute;
        right: 18px;
    }

    .mobile-nav-overlay {
        display: none;
    }

    .mobile-nav-overlay.active {
        display: block;
    }

    .nav-bar {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
        z-index: 997;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
    }

    .nav-bar.active {
        max-height: 90vh;
        padding: 0rem 0;
        overflow-y: auto;
    }

    .nav-container {
        padding: 8px 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .nav-menu>li {
        width: 100%;
    }

    .nav-menu>li>a {
        width: 100%;
        /* justify-content: space-between; */
        border-radius: 0.5rem;
        padding: 1rem 1.25rem;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        margin-top: 0rem;
        opacity: 0;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 0.75rem;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(15px);
        padding: 0;
    }

    .nav-menu>li.has-dropdown.active>.nav-dropdown {
        max-height: 400px;
        padding: 0.75rem 0;
        margin-bottom: 0.5rem;
    }

    .content-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .hero-card,
    .content-card {
        padding: 1.5rem;
    }

    .nav-menu>li>a {
        width: 100%;
        /* justify-content: space-between; */
    }
}

.bi-arrow-right {
    color: var(--pink);
}

@media (max-width: 767px) {
    .nav-dropdown a {
        padding: 0.85rem 1.5rem;
        border-left: none;
        color: white;
        background: transparent;
        display: flex;
        align-items: center;
        font-weight: 500;
        transition: all 0.3s ease;
    }
}

@media (max-width: 767px) {
    .has-dropdown.active .nav-dropdown {
        opacity: 1;
        max-height: 500px;
    }
}

.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.button-style {
    height: 42px !important;
    border-radius: 50px !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
    background: linear-gradient(135deg, #ec4899, #9333ea) !important;
}