/* Privacy Policy Styles */
.privacy-policy {
    padding: 2rem 0;
    background: linear-gradient(135deg, #ff8fab 0%, #ffc3a0 100%);
    min-height: 80vh;
}

.policy-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.policy-content h1 {
    color: #ff8fab;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 3px solid #ff8fab;
    padding-bottom: 1rem;
}

.last-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: #b67a93;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-left: 4px solid #ff8fab;
    padding-left: 1rem;
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.6;
}

.back-link {
    text-align: center;
}

.back-link .btn {
    background: white;
    color: #ff8fab;
    border: 2px solid #ff8fab;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link .btn:hover {
    background: #ff8fab;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 139, 171, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }
}