/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 50px 0;
    background: var(--background-color);
    position: relative;
}

.privacy-policy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color),
        var(--secondary-color),
        var(--primary-color),
        transparent);
    background-size: 200% 100%;
    animation: borderFlow 3s linear infinite reverse;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--very-light-grey);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.last-updated {
    color: var(--dark-grey);
    font-style: italic;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.policy-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    margin: 20px 0 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-info {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info p {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .policy-content {
        padding: 20px;
        margin: 0 15px;
    }

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

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