/* Privacy Page Specific Styles */

.page-banner {
    background: #495057;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.privacy-content {
    padding: 80px 0;
    background: #fdfdfd;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.intro-text {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.content-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 30px;
    color: #333;
    font-weight: 700;
}

.policy-section h3:first-child {
    margin-top: 0;
}

.policy-section h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #444;
    font-weight: 600;
}

.policy-section p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.policy-section p strong {
    color: #333;
    font-weight: 600;
}

.policy-section ol,
.policy-section ul {
    margin: 15px 0 15px 30px;
    color: var(--light-text);
    line-height: 1.8;
}

.policy-section li {
    margin-bottom: 10px;
}

.warning-text {
    color: #c92a2a;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.warning-list {
    background: #fff5f5;
    padding: 20px 30px;
    border-radius: 8px;
    border-left: 4px solid #e03131;
    margin: 15px 0;
}

.warning-list li {
    color: #c92a2a;
    margin-bottom: 8px;
}

.warning {
    background: #fff5f5;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ffe3e3;
}

.warning h3 {
    color: #e03131;
}

.warning p {
    color: #c92a2a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 30px 20px;
    }

    .content-wrapper h2 {
        font-size: 24px;
    }

    .policy-section h3 {
        font-size: 20px;
    }

    .policy-section h4 {
        font-size: 16px;
    }

    .policy-section p {
        font-size: 14px;
    }

    .intro-text {
        padding: 15px;
        font-size: 14px;
    }
}

