.policy-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 120px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.policy-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.policy-hero h1 {
    font-size: 56px;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.policy-hero .last-updated {
    color: #888888;
    font-size: 16px;
    margin-bottom: 25px;
}

.policy-hero p {
    font-size: 20px;
    color: #cccccc;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #0a0a0a;
}

.policy-section {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.policy-section h2 {
    font-size: 36px;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.policy-section h2::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #ffffff;
}

.policy-section h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    margin: 30px 0 15px;
}

.policy-section p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.9;
    margin-bottom: 20px;
}

.policy-section ul,
.policy-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-section li {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.9;
    margin-bottom: 12px;
}

.policy-section ul li::marker {
    color: #ffffff;
}

.policy-section ol li::marker {
    color: #ffffff;
    font-weight: 700;
}

.policy-highlight {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #ffffff;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.policy-highlight p {
    margin-bottom: 0;
    font-weight: 500;
}

.policy-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.policy-table th {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 18px;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.policy-table td {
    color: #cccccc;
    font-size: 16px;
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-contact-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
}

.policy-contact-box h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
}

.policy-contact-box p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 25px;
}

.policy-contact-box a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.policy-contact-box a:hover {
    opacity: 0.7;
}

.policy-nav {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    position: sticky;
    top: 100px;
}

.policy-nav h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-nav li {
    margin-bottom: 12px;
}

.policy-nav a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.policy-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 20px;
}


.cookie-btn {
    background: #0a0a0a;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .policy-hero h1 {
        font-size: 36px;
    }

    .policy-hero p {
        font-size: 18px;
    }

    .policy-section h2 {
        font-size: 28px;
    }

    .policy-section h3 {
        font-size: 20px;
    }

    .policy-section p,
    .policy-section li {
        font-size: 16px;
    }

    .policy-nav {
        position: static;
    }
}

@media (max-width: 520px) {
    .policy-hero {
        padding: 80px 20px 60px;
    }

    .policy-hero h1 {
        font-size: 28px;
    }

    .policy-content {
        padding: 60px 20px;
    }

    .policy-overflow {
        overflow-x: scroll;
    }

    .policy-table {
        overflow-x: scroll;
    }
}