/* Privacy Policy Page Styles */
.privacy-policy-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e74c3c;
}

.policy-section h3 {
    color: #34495e;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    margin-top: 20px;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section ul li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    list-style-type: disc;
}

.update-date {
    background: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #e74c3c;
    margin-bottom: 25px;
    font-size: 16px;
}

.update-date strong {
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 25px 20px;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
    
    .policy-section h3 {
        font-size: 16px;
    }
}

/* Privacy Banner Adjustments */
.privacy-banner {
    /* Override banner background variables to gradient purple -> white */
    --banner-one-bg: linear-gradient(180deg, #6a00f5 0%, #ffffff 100%);
    --banner-most-used-bg: linear-gradient(180deg, #6a00f5 0%, #ffffff 100%);
}

.privacy-banner.rts-hosting-banner-bg::after {
    /* Remove overlay image to show pure gradient */
    background-image: none !important;
}

.privacy-banner .banner-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.privacy-banner .rts-hosting-banner__content {
    max-width: 900px;
    margin: 0 auto;
}

/* Ensure the "about__banner" variant is fully centered and wide enough */
.privacy-banner .rts-hosting-banner__content.about__banner {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-banner .rts-hosting-banner__content.about__banner .slogan {
    width: 100% !important; /* override template fixed width */
    max-width: 900px;
    margin: 12px auto 0;
}

.privacy-banner .banner-title {
    font-size: 56px;
    line-height: 1.2;
    margin: 8px auto 0;
}

.privacy-banner .slogan {
    font-size: 18px;
}

@media (max-width: 768px) {
    .privacy-banner .banner-title {
        font-size: 40px;
    }
    .privacy-banner .slogan {
        font-size: 16px;
    }
}