.page-privacy-policy {
    background-color: #F4F7FB; /* Background color from custom配色 */
    color: #1F2D3D; /* Text Main color */
    padding-bottom: 40px;
}

.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    background-color: #F4F7FB;
    position: relative;
    overflow: hidden; /* For image overflow */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Ensure it takes full width */
    margin-bottom: 20px; /* Space between image and text */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
}

.page-privacy-policy__hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-privacy-policy__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* Use clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    max-width: 100%;
}

.page-privacy-policy__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main color */
    margin-bottom: 30px;
}

.page-privacy-policy__cta-button,
.page-privacy-policy__back-home-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3); /* Glow color hint */
}

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

.page-privacy-policy__content-area {
    padding: 40px 0;
    background-color: #F4F7FB;
}

.page-privacy-policy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-privacy-policy__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-privacy-policy__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #1F2D3D; /* Text Main color */
}

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main color */
}

.page-privacy-policy__list-item {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
    object-fit: cover;
}

.page-privacy-policy__paragraph a {
    color: #2F6BFF; /* Main color for links */
    text-decoration: underline;
    font-weight: 600;
}

.page-privacy-policy__paragraph a:hover {
    color: #6FA3FF; /* Auxiliary color on hover */
}

.page-privacy-policy__last-updated {
    font-style: italic;
    color: #1F2D3D;
    margin-top: 30px;
}

.page-privacy-policy__back-home-button {
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding-top: 8px;
        padding-bottom: 30px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

    .page-privacy-policy__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.95rem;
    }

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

    .page-privacy-policy__content-image {
        max-width: 100%; /* Ensure images don't overflow on mobile */
        height: auto;
    }
}