/* Privacy Policy Page Styles */
.privacy-hero {
    color: #971d35; /* Changed to dark color since no background */
    padding: 100px 0;
    text-align: center;
    position: relative;
    background: #f8f9fa; /* Simple light background instead */
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    font-weight: 700;
    color: #971d35; /* Dark color for visibility */
    white-space: nowrap;
    overflow: hidden;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 0 auto;
    line-height: 1.6;
    color: #555; /* Dark color for readability */
}

.privacy-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.last-updated {
    background: #e3f2fd;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #971d35;
}

.last-updated p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: #971d35;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #971d35;
    padding-bottom: 10px;
}

.privacy-section h3 {
    color: #971d35;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.privacy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.privacy-section strong {
    color: #971d35;
    font-weight: 600;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #971d35;
}

.contact-info p {
    margin-bottom: 8px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
        white-space: normal;
    }

    .privacy-wrapper {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        white-space: normal;
        line-height: 1.2;
    }

    .privacy-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .privacy-section {
        margin-bottom: 30px;
    }
}
