.policy-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.policy-hero h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.policy-hero .subtitle {
    font-size: 20px;
    color: #cccccc;
    position: relative;
    z-index: 1;
}

.policy-content {
    padding: 80px 0;
    background: #ffffff;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 48px;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ff8c00;
    animation: fadeInUp 0.6s ease-out;
}

.policy-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-section h2::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #ff8c00;
    border-radius: 50%;
}

.policy-section h3 {
    font-size: 24px;
    color: #333;
    margin-top: 28px;
    margin-bottom: 16px;
}

.policy-section p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.policy-section ul li {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.policy-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: 700;
}

.policy-section strong {
    color: #1a1a1a;
    font-weight: 600;
}

.policy-update {
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    padding: 24px 32px;
    border-radius: 12px;
    margin-top: 32px;
    border: 2px solid #ffe4b3;
}

.policy-update p {
    margin: 0;
    color: #666;
    font-size: 17px;
}

.policy-update strong {
    color: #ff8c00;
}

.policy-contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 48px;
}

.policy-contact h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 16px;
}

.policy-contact p {
    color: #cccccc;
    margin-bottom: 24px;
}

.policy-contact a {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s ease;
}

.policy-contact a:hover {
    color: #ff6b00;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 800px) {
    .policy-hero h1 {
        font-size: 38px;
    }

    .policy-section {
        padding: 28px;
    }

    .policy-section h2 {
        font-size: 26px;
    }

    .policy-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 100px 0 60px;
    }

    .policy-hero h1 {
        font-size: 28px;
    }

    .policy-section {
        padding: 20px;
    }
}