.page-privacy-policy {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--background);
}

.page-privacy-policy__hero-section {
    position: relative;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Using main colors for hero background if image fails */
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 400px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
    /* HTML width/height attributes are for aspect ratio and CLS, CSS adjusts display */
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: #FFFFFF;
    z-index: 1;
}

.page-privacy-policy__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    min-width: 120px;
    text-align: center;
}

.page-privacy-policy__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__button--register {
    /* Specific styles for register if needed */
}

.page-privacy-policy__button--login {
    /* Specific styles for login if needed */
}

.page-privacy-policy__content-area {
    padding: 50px 20px;
    background-color: var(--background);
}

.page-privacy-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--card-b-g);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-title {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-privacy-policy__paragraph a {
    color: #2F6BFF;
    text-decoration: underline;
}

.page-privacy-policy__paragraph a:hover {
    color: #6FA3FF;
}

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

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

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

    .page-privacy-policy__hero-image-wrapper {
        max-height: 250px;
    }

    .page-privacy-policy__hero-image {
        min-width: 200px;
        min-height: 200px;
        max-width: 100%;
        height: auto;
    }

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

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

    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-privacy-policy__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

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

    .page-privacy-policy__section-title {
        font-size: 1.5rem;
    }

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

@media (max-width: 480px) {
    .page-privacy-policy__hero-section {
        padding-bottom: 20px;
    }
    .page-privacy-policy__hero-image-wrapper {
        max-height: 200px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .page-privacy-policy__container {
        padding: 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.3rem;
    }
}