.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bg-tertiary);
    z-index: 1000;
    transition: all .3s
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 2rem;
    max-width: 1400px;
    margin: 0 auto
}

.logo img {
    height: 45px;
    width: auto
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: 0;
    border: 0;
    cursor: pointer;
    padding: .5rem
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all .3s
}


.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-link {
    font-family: var(--font-body);
    font-size: .9375rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color .2s;
    padding: .5rem 0
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary)
}

.nav-link.contact-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: .625rem 1.5rem;
    border-radius: 8px
}

.nav-link.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 133, 121, 0.3)
}

@media(max-width:768px) {
    .menu-toggle {
        display: flex
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        transition: right .3s;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1)
    }

    .nav-menu.active {
        right: 0
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem
    }

    .nav-link.contact-btn {
        width: 100%;
        text-align: center
    }
}

.policy-hero {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, rgba(19, 133, 121, 0.05), rgba(97, 26, 104, 0.05));
    position: relative;
    overflow: hidden;
    margin-top: 70px
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(19, 133, 121, 0.1), transparent 60%);
    pointer-events: none
}

.policy-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem
}

.breadcrumb {
    display: none
}

.policy-hero-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: .75rem;
    line-height: 1.2
}

.policy-hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5
}

.policy-content {
    padding: 2rem 0 3rem
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem
}

.policy-section {
    margin-bottom: 2.5rem
}

.policy-section:last-child {
    margin-bottom: 0
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 3px solid var(--primary);
    display: flex;
    align-items: center;
    gap: .75rem
}

.policy-section p {
    font-size: .9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem
}

.policy-section p:last-child {
    margin-bottom: 0
}

.policy-section a {
    color: var(--primary);
    font-weight: 600;
    transition: color .2s
}

.policy-section a:hover {
    color: var(--secondary);
    text-decoration: underline
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0
}

.info-card {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-tertiary);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all .3s
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(19, 133, 121, 0.12);
    border-color: rgba(19, 133, 121, 0.3)
}

.info-card.highlight {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(19, 133, 121, 0.05), rgba(97, 26, 104, 0.05))
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .875rem
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.info-list li {
    font-size: .875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: .5rem;
    padding-left: 0
}

.info-list li:last-child {
    margin-bottom: 0
}

.info-list li strong {
    color: var(--text-primary);
    font-weight: 600
}

.info-list li a {
    color: var(--primary);
    word-break: break-all
}

.highlight-box {
    background: linear-gradient(135deg, rgba(19, 133, 121, 0.08), rgba(97, 26, 104, 0.08));
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0
}

.highlight-box h3 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .5rem
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: .9375rem;
    line-height: 1.6
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: .75rem;
    margin: 1.25rem 0
}

.right-item {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-tertiary);
    border-radius: 10px;
    padding: 1rem .75rem;
    text-align: center;
    transition: all .3s
}

.right-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 133, 121, 0.1)
}

.right-item svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    margin-bottom: .375rem
}

.right-item span {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3
}

.policy-subsection {
    margin: 1.5rem 0
}

.policy-subsection:first-child {
    margin-top: 0
}

.policy-subsection:last-child {
    margin-bottom: 0
}

.policy-subsection h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .75rem
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.policy-list li {
    font-size: .875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: .75rem;
    padding-left: 1.75rem;
    position: relative
}

.policy-list li:last-child {
    margin-bottom: 0
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .5rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(19, 133, 121, 0.15)
}

.policy-list li strong {
    color: var(--primary);
    font-weight: 600
}

.policy-cta {
    background: linear-gradient(135deg, rgba(19, 133, 121, 0.05), rgba(97, 26, 104, 0.05));
    border-radius: 14px;
    padding: 2rem 2.5rem;
    text-align: center;
    margin-top: 2.5rem
}

.policy-cta h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: .875rem
}

.policy-cta>p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: 1rem 1.75rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: .9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08)
}

.cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform .3s
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(19, 133, 121, 0.3)
}

.cta-button.primary:hover svg {
    transform: translateX(3px)
}

.cta-button.secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--primary)
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(19, 133, 121, 0.25)
}

.disclaimer {
    font-size: .8125rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.5
}

@media(max-width:768px) {
    .policy-hero {
        padding: 4rem 0 1.5rem;
        margin-top: 70px
    }

    .policy-hero .container {
        padding: 0 1.5rem
    }

    .policy-hero-title {
        font-size: 1.75rem
    }

    .policy-hero-subtitle {
        font-size: .9375rem
    }

    .policy-content {
        padding: 1.5rem 0 2.5rem
    }

    .policy-wrapper {
        padding: 0 1.5rem
    }

    .policy-section {
        margin-bottom: 2rem
    }

    .section-title {
        font-size: 1.375rem
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: .875rem
    }

    .info-card {
        padding: 1rem
    }

    .rights-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: .625rem
    }

    .right-item {
        padding: .875rem .5rem
    }

    .right-item svg {
        width: 24px;
        height: 24px
    }

    .right-item span {
        font-size: .75rem
    }

    .policy-cta {
        padding: 1.5rem 1.25rem
    }

    .policy-cta h2 {
        font-size: 1.375rem
    }

    .policy-cta>p {
        font-size: .9375rem
    }

    .cta-buttons {
        flex-direction: column;
        gap: .75rem
    }

    .cta-button {
        width: 100%;
        justify-content: center
    }
}

[data-theme="dark"] .policy-hero {
    background: linear-gradient(135deg, rgba(19, 133, 121, 0.08), rgba(97, 26, 104, 0.08))
}

[data-theme="dark"] .info-card {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.1)
}

[data-theme="dark"] .info-card:hover {
    border-color: rgba(19, 133, 121, 0.4)
}

[data-theme="dark"] .info-card.highlight {
    border-color: var(--primary)
}

[data-theme="dark"] .highlight-box {
    background: linear-gradient(135deg, rgba(19, 133, 121, 0.1), rgba(97, 26, 104, 0.1))
}

[data-theme="dark"] .right-item {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.1)
}

[data-theme="dark"] .right-item:hover {
    border-color: rgba(19, 133, 121, 0.5)
}

[data-theme="dark"] .policy-cta {
    background: linear-gradient(135deg, rgba(19, 133, 121, 0.08), rgba(97, 26, 104, 0.08))
}

[data-theme="dark"] .cta-button.secondary {
    background: var(--bg-secondary);
    border-color: var(--primary)
}

[data-theme="dark"] .cta-button.secondary:hover {
    background: var(--primary);
    color: white
}