body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(135deg, #eef2f7, #f8f9fb);
    color: #24313f;
    line-height: 1.7;
}

html {
    scroll-behavior: smooth;
}

.policy-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #00a75d, #28a745, #007bff);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.policy-header__inner {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    transition: transform 0.25s ease, background 0.25s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-3px);
}

.header-title {
    margin: 0;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
}

.policy-page {
    padding: 30px 20px 50px;
}

.policy-card {
    max-width: 950px;
    margin: 0 auto;
    background: #fff;
    padding: 44px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00a75d, #28a745, #007bff);
}

.policy-pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 167, 93, 0.1);
    color: #00a75d;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.policy-intro h2 {
    margin: 0 0 20px;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(45deg, #00a75d, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-intro,
.policy-section,
.policy-footer {
    position: relative;
    z-index: 1;
}

.policy-intro p,
.policy-section p,
.policy-footer p {
    margin: 0 0 16px;
    text-align: justify;
    color: #556270;
}

.policy-section {
    margin-top: 34px;
}

.policy-section h3 {
    margin: 0 0 14px;
    padding-left: 18px;
    font-size: 1.25rem;
    color: #123057;
    font-weight: 600;
    position: relative;
}

.policy-section h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(135deg, #00a75d, #007bff);
}

.policy-section ul {
    padding-left: 22px;
    margin: 0 0 18px;
}

.policy-section li {
    margin-bottom: 10px;
    color: #556270;
}

.policy-section li::marker {
    color: #00a75d;
}

a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

.policy-footer {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid #e9eef4;
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 20px 14px 35px;
    }

    .policy-card {
        padding: 28px 22px;
    }

    .policy-intro h2 {
        font-size: 1.8rem;
    }

    .policy-section h3 {
        font-size: 1.08rem;
    }
}