/* style/privacy-policy.css */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.page-privacy-policy .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-privacy-policy .hero-banner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #1a1a1a; /* Dark background for contrast with gold/red */
    overflow: hidden;
}

.page-privacy-policy .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.7), rgba(139, 0, 0, 0.7));
    z-index: 1;
}

.page-privacy-policy .hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-privacy-policy .hero-image {
    width: 100%;
    height: auto;
    max-height: 400px; /* Adjust as needed */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy .hero-text-container {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-privacy-policy .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FFD700; /* Gold button */
    color: #8B0000; /* Dark red text for contrast */
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy .cta-button:hover {
    background: #e0b800; /* Slightly darker gold on hover */
    color: #4a0000; /* Darker red on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy .content-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-privacy-policy .section-title {
    font-size: 2.2em;
    color: #8B0000; /* Dark red for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-privacy-policy .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-privacy-policy h3 {
    font-size: 1.6em;
    color: #8B0000; /* Dark red for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-privacy-policy p {
    margin-bottom: 1em;
    font-size: 1.05em;
    line-height: 1.7;
    color: #333333;
}

.page-privacy-policy ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1.5em;
}

.page-privacy-policy ul li {
    margin-bottom: 0.8em;
    color: #444444;
}

.page-privacy-policy strong {
    color: #8B0000;
}

.page-privacy-policy a {
    color: #8B0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-privacy-policy .content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-privacy-policy .hero-title {
        font-size: 2.5em;
    }
    .page-privacy-policy .hero-description {
        font-size: 1em;
    }
    .page-privacy-policy .section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy .hero-banner {
        padding: 40px 15px;
    }
    .page-privacy-policy .hero-image {
        max-height: 250px;
        margin-bottom: 20px;
    }
    .page-privacy-policy .hero-title {
        font-size: 2em;
    }
    .page-privacy-policy .hero-description {
        font-size: 0.95em;
    }
    .page-privacy-policy .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-privacy-policy .content-section {
        padding: 30px 15px;
        margin: 20px auto;
    }
    .page-privacy-policy .section-title {
        font-size: 1.6em;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-privacy-policy h3 {
        font-size: 1.2em;
        padding-left: 10px;
    }
    .page-privacy-policy p,
    .page-privacy-policy ul li {
        font-size: 0.95em;
    }
    .page-privacy-policy ul {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy .hero-title {
        font-size: 1.6em;
    }
    .page-privacy-policy .hero-image {
        max-height: 180px;
    }
    .page-privacy-policy .hero-description {
        font-size: 0.9em;
    }
    .page-privacy-policy .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-privacy-policy .section-title {
        font-size: 1.4em;
    }
    .page-privacy-policy h3 {
        font-size: 1.1em;
    }
    .page-privacy-policy ul {
        margin-left: 15px;
    }
}