.page-about {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif; /* Roboto-like font */
    line-height: 1.6;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-about__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #2F6BFF; /* Primary color */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden; /* Ensure no image overflow */
}

.page-about__hero-image-wrapper {
    width: 100%;
    /* No absolute positioning to stack image and text */
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-about__hero-content {
    padding: 40px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Ensure content is above image if any slight overlap */
    position: relative; /* For z-index to work against image */
}

.page-about__main-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem); /* Responsive H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-about__lead-paragraph {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #D6E2FF; /* Border color for lighter text */
}

.page-about__cta-button {
    display: inline-flex; /* Use inline-flex for button centering */
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    min-width: 200px; /* Minimum button size */
    min-height: 44px; /* Minimum touch target */
    align-items: center; /* For vertical centering */
    justify-content: center; /* For horizontal centering */
    margin: 0 auto; /* Center the button */
}

.page-about__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-about__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1F2D3D; /* Text Main */
}

.page-about__section-title--gradient {
    background: linear-gradient(90deg, #2F6BFF, #6FA3FF); /* Primary to secondary for gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for browsers that don't support text-fill-color */
}

.page-about__mission-section,
.page-about__why-choose-us-section,
.page-about__responsible-gaming-section,
.page-about__cta-section {
    padding: 60px 0;
}

.page-about__mission-section,
.page-about__responsible-gaming-section {
    background-color: #FFFFFF; /* Card BG */
    margin-bottom: 20px;
}

.page-about__content-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-about__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-about__text-block {
    flex: 1;
    min-width: 0; /* Allow flex item to shrink */
}

.page-about__text-block p {
    margin-bottom: 15px;
    color: #1F2D3D; /* Text Main */
}

.page-about__text-block .page-about__section-title {
    text-align: left;
    margin-bottom: 20px;
}

.page-about__image-block {
    flex: 1;
    min-width: 200px; /* Minimum size for image block */
}

.page-about__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-about__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__feature-card {
    background-color: #FFFFFF; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #D6E2FF; /* Border color */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px; /* Ensure cards have some height */
}

.page-about__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2F6BFF; /* Primary color */
}

.page-about__feature-card p {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-about__card-link,
.page-about__text-link {
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block; /* For text links to stack */
    margin-top: 10px; /* Spacing for multiple text links */
}

.page-about__card-link:hover,
.page-about__text-link:hover {
    color: #6FA3FF; /* Secondary color */
    text-decoration: underline;
}

.page-about__cta-section {
    background-color: #2F6BFF; /* Primary color */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-about__cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #D6E2FF; /* Lighter text color */
}

.page-about__cta-button--large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-about__content-flex {
        flex-direction: column;
    }

    .page-about__content-flex--reverse {
        flex-direction: column; /* Stacks normally on small screens */
    }

    .page-about__text-block .page-about__section-title {
        text-align: center;
    }

    .page-about__hero-content {
        padding: 30px 15px 40px;
    }

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

    .page-about__lead-paragraph {
        font-size: 1.1rem;
    }

    .page-about__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .page-about__features-grid {
        grid-template-columns: 1fr;
    }

    .page-about__image-block {
        order: -1; /* Image appears above text on mobile for mission/security sections */
    }
}

@media (max-width: 768px) {
    .page-about__hero-image,
    .page-about__image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) {
    .page-about__hero-content {
        padding: 20px 10px 30px;
    }

    .page-about__main-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .page-about__lead-paragraph {
        font-size: 1rem;
    }

    .page-about__section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}