:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg-color: #FFFFFF;
    --background-color: #F4F7FB;
    --text-main-color: #1F2D3D;
    --custom-color-1776249996415: #000000; /* Black */
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

.page-privacy-policy {
    background-color: var(--background-color);
    color: var(--text-main-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding as per rule */
    margin-bottom: 40px;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-privacy-policy__hero-content {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    padding: 0 20px;
    text-align: center;
}

.page-privacy-policy__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--custom-color-1776249996415);
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__description {
    font-size: 1.1em;
    color: var(--text-main-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Section */
.page-privacy-policy__content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--card-bg-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__container {
    padding: 30px;
}

.page-privacy-policy__section-title {
    font-size: 1.8em;
    color: var(--custom-color-1776249996415);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.page-privacy-policy__list-item {
    margin-bottom: 8px;
}

.page-privacy-policy__image-block {
    text-align: center;
    margin: 30px 0;
}

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.page-privacy-policy__image-caption {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    border-radius: 5px;
    background: var(--button-gradient);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.page-privacy-policy__button:hover {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-content {
        margin-top: 15px;
        padding: 0 15px;
    }

    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__description {
        font-size: 1em;
    }

    .page-privacy-policy__content-section {
        padding: 15px;
        margin: 0 15px;
    }

    .page-privacy-policy__container {
        padding: 20px;
    }

    .page-privacy-policy__section-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__list {
        margin-left: 20px;
    }

    .page-privacy-policy__content-image {
        max-width: 100%;
        height: auto;
    }
}