/* style/privacy-policy.css */

.page-privacy-policy {
    background-color: #F4F7FB; /* Use specified background color */
    color: #1F2D3D; /* Use specified text main color */
    font-family: Arial, sans-serif;
}

.page-privacy-policy__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    margin-bottom: 40px;
    overflow: hidden; /* Ensure image doesn't overflow */
}

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

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure image is not too small */
    min-width: 200px; /* Ensure image is not too small */
}

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

.page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    color: #000000; /* Use specified Custom Color_1776249996415 for main title for contrast */
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Use specified text main color */
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__content-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 20px;
    background-color: #FFFFFF; /* Use specified Card BG color */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.page-privacy-policy__heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: #000000; /* Use specified Custom Color_1776249996415 */
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D6E2FF; /* Use specified border color */
}

.page-privacy-policy__text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #1F2D3D; /* Use specified text main color */
}

.page-privacy-policy__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-privacy-policy__list-item {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #1F2D3D; /* Use specified text main color */
}

.page-privacy-policy__list-item strong {
    color: #000000; /* Use specified Custom Color_1776249996415 */
}

.page-privacy-policy__text a,
.page-privacy-policy__list-item a {
    color: #2F6BFF; /* Use specified primary color */
    text-decoration: none;
    font-weight: 500;
}

.page-privacy-policy__text a:hover,
.page-privacy-policy__list-item a:hover {
    text-decoration: underline;
}

.page-privacy-policy__cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Use specified button gradient */
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    min-width: 150px;
}

.page-privacy-policy__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.3);
}

.page-privacy-policy__cta-button--secondary {
    background: #6FA3FF; /* Use specified secondary color */
    color: #FFFFFF;
}

.page-privacy-policy__cta-button--secondary:hover {
    background: #5a8be0; /* Slightly darker secondary color on hover */
    box-shadow: 0 6px 15px rgba(111, 163, 255, 0.3);
}

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

    .page-privacy-policy__main-title {
        font-size: 2rem;
    }

    .page-privacy-policy__description {
        font-size: 0.95rem;
    }

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

    .page-privacy-policy__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__heading {
        font-size: 1.6rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__text,
    .page-privacy-policy__list-item {
        font-size: 0.9rem;
    }

    .page-privacy-policy__list {
        padding-left: 15px;
    }

    .page-privacy-policy__cta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .page-privacy-policy__cta-button {
        width: 100%;
        max-width: 280px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    /* Enforce image responsiveness for all images within the page-privacy-policy */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
        /* min-width/min-height are applied globally below */
    }

    /* Specific rule for content section images to ensure they scale and meet min size */
    .page-privacy-policy__content-section img {
        width: 100%; /* Make content images fill their container */
        height: auto;
    }
}

/* Ensure all images within the page-privacy-policy class adhere to minimum size */
.page-privacy-policy img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Maintain aspect ratio */
}

/* Ensure CSS does not conflict with HTML width/height for CLS */
/* For example, if an img has width="1200" height="675", CSS should not force it to 80x80 */
.page-privacy-policy__hero-image {
    /* If HTML has width="1200" height="675", this ensures it scales down responsively */
    max-width: 100%;
    height: auto;
}
/* Any other content images should also scale down */
.page-privacy-policy__content-section img {
    max-width: 100%;
    height: auto;
}