/* Policy Pages Styling */

.policy-wrapper {
    background: linear-gradient(135deg, #f8f7ff 0%, #f3f0ff 100%);
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.6s ease-out;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.policy-header .update-date {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.update-date svg {
    width: 16px;
    height: 16px;
    color: #667eea;
}

.policy-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.policy-section:hover {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.policy-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 3px solid #667eea;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section h2::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
}

.policy-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #333;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
    font-size: 15px;
}

.policy-section ul li strong {
    color: #667eea;
}

.policy-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.policy-section a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 1.8rem;
    }

    .policy-section {
        padding: 20px;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }
}