/* Terms and Conditions Section Styles */
.privacy-policy-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.privacy-policy-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.privacy-policy-section .page-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.privacy-policy-section .intro-text {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: left;
}

.policy-content {
    color: #333;
}

.privacy-policy-section .section-heading {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.policy-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.policy-content p strong {
    color: #2c3e50;
    font-weight: 600;
}

.policy-list {
    margin: 20px 0 30px 0;
    padding-left: 0;
    list-style: none;
}

.policy-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.policy-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #3498db;
    font-size: 20px;
    font-weight: bold;
}

.privacy-policy-section .contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--cta-orange);
}

.privacy-policy-section .contact-info p {
    margin-bottom: 15px;
    font-size: 18px;
}

.privacy-policy-section .contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 40px 0;
    }
    
    .privacy-policy-wrapper {
        padding: 20px 15px;
    }
    
    .privacy-policy-section .page-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .privacy-policy-section .intro-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .privacy-policy-section .section-heading {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .policy-content p,
    .policy-list li,
    .contact-info p {
        font-size: 16px;
    }
    
    .privacy-policy-section .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-section .page-title {
        font-size: 28px;
    }
    
    .privacy-policy-section .intro-text {
        font-size: 15px;
    }
    
    .privacy-policy-section .section-heading {
        font-size: 18px;
    }
    
    .policy-content p,
    .policy-list li,
    .privacy-policy-section .contact-info p {
        font-size: 15px;
    }
}
