/* Legal and Thanks Pages Styles */
.privacy-section,
.terms-section,
.thanks-section {
    margin-top: 50px;
    padding: 80px 0;
    background: var(--white);
}

.privacy-content,
.terms-content,
.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.privacy-content h3,
.terms-content h3,
.thanks-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 20px 0 10px;
}

.privacy-content p,
.terms-content p,
.thanks-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-content ul,
.terms-content ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-content ul li,
.terms-content ul li {
    position: relative;
    color: var(--dark-gray);
    margin-bottom: 10px;
    padding-left: 20px;
}

.privacy-content ul li::before,
.terms-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.privacy-content a,
.terms-content a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-content a:hover,
.terms-content a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.thanks-content {
    text-align: center;
}

.thanks-content .cta-button {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-section,
    .terms-section,
    .thanks-section {
        padding: 60px 0;
    }

    .privacy-content,
    .terms-content,
    .thanks-content {
        padding: 20px;
    }

    .privacy-content h3,
    .terms-content h3,
    .thanks-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-content,
    .terms-content,
    .thanks-content {
        padding: 15px;
    }

    .privacy-content ul,
    .terms-content ul {
        padding-left: 15px;
    }

    .privacy-content ul li,
    .terms-content ul li {
        padding-left: 15px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .privacy-content,
    .terms-content,
    .thanks-content {
        border: 2px solid var(--primary-blue);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .privacy-content,
    .terms-content,
    .thanks-content {
        transition: none;
    }
}