
/* Privacy Policy & Terms & Conditions Pages */
:root {
    --primary: #180161;
    --secondary: #4f1787;
    --accent: #eb3678;
    --highlight: #fb773c;
    --background: #ffffff;
    --text-color: #333;
    --white: #fff;
}
.privacy-hero,
.terms-hero {
    background: linear-gradient(rgba(24, 1, 97, 0.85), rgba(79, 23, 135, 0.85)),
    url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg') center/cover no-repeat fixed;
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.privacy-hero h1,
.terms-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-hero p,
.terms-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-content,
.terms-content {
    padding: 4rem 0;
    background: white;
}

.privacy-wrapper,
.terms-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-section,
.terms-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--soft-lilac);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-section h2,
.terms-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.privacy-section h2::after,
.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.privacy-section p,
.terms-section p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul,
.terms-section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section ul li,
.terms-section ul li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-section ul li::before,
.terms-section ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.contact-info {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.contact-info p i {
    color: var(--primary);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .privacy-hero h1,
    .terms-hero h1 {
        font-size: 2rem;
    }

    .privacy-wrapper,
    .terms-wrapper {
        padding: 0 1rem;
    }

    .privacy-section,
    .terms-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.25rem;
    }
}

