:root {
    --main-color: #113B7A;
    --auxiliary-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow: #4FA8FF;
    --gold: #F2C14E;
    --divider: #1B3357;
    --deep-navy: #08162B;
}

.page-privacy-policy {
    background-color: var(--deep-navy); /* Base background from custom colors */
    color: var(--text-main); /* Main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom */
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

/* Hero Section */
.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column; /* Mobile first: column layout */
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* Small top padding, more bottom padding */
    background: linear-gradient(180deg, var(--main-color) 0%, var(--deep-navy) 100%); /* Blue gradient background */
    margin-bottom: 40px;
}

.page-privacy-policy__hero-visual {
    width: 100%;
    max-width: 1200px; /* Max width for hero image container */
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.page-privacy-policy__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 5; /* 1920x600 = 3.2, 16/5 = 3.2 */
    min-height: 200px; /* Minimum height for hero image */
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive font size for H1 */
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-privacy-policy__description {
    font-size: clamp(1rem, 2vw, 1.15rem); /* Responsive font size for description */
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Sections */
.page-privacy-policy__content-section {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: var(--card-bg); /* Card background color */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color); /* Border color */
}

.page-privacy-policy__section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gold); /* Gold for section titles */
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--divider); /* Divider color */
    padding-bottom: 10px;
}

.page-privacy-policy__content-section p {
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-privacy-policy__content-section strong {
    color: var(--text-main);
}

.page-privacy-policy__content-section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-privacy-policy__content-section li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.page-privacy-policy__content-section a {
    color: var(--auxiliary-color); /* Auxiliary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__content-section a:hover {
    color: var(--glow); /* Glow color on hover */
    text-decoration: underline;
}

/* CTA Button */
.page-privacy-policy__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient); /* Button gradient */
    color: var(--text-main);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* General image styling for content sections */
.page-privacy-policy__content-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 20px 40px 60px;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy__content-section {
        padding: 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .page-privacy-policy__content-section ul {
        margin-left: 20px;
    }
    /* Ensure content images are responsive and don't overflow */
    .page-privacy-policy__content-section img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Still enforce min size for content images */
        min-height: 200px;
    }
}