.page-about {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    font-family: Arial, sans-serif;
    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: #0A4B2C; /* Deep Green for hero background */
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure no overflow issues */
}

.page-about__hero-image {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px; /* Space between image and text */
}

.page-about__hero-content {
    padding: 0 20px 40px; /* Padding for text content */
    max-width: 800px;
}

.page-about__main-title {
    font-size: clamp(2.2em, 4vw, 3em); /* Use clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Subtle glow */
}

.page-about__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-about__section-title {
    font-size: 2.2em;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #11A84E, #22C768); /* Main/Auxiliary gradient */
    border-radius: 2px;
}

.page-about__mission-vision-section,
.page-about__why-choose-section,
.page-about__responsible-gaming-section,
.page-about__cta-section {
    padding: 40px 0;
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

.page-about__content-wrapper:nth-child(even) {
    flex-direction: row-reverse; /* Alternate image/text layout */
}

.page-about__image {
    width: 100%;
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

.page-about__text-content {
    flex: 1;
    color: #F2FFF6; /* Text Main */
    font-size: 1.05em;
}

.page-about__text-content p {
    margin-bottom: 15px;
}

.page-about__text-content a {
    color: #2AD16F; /* Button primary color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-about__text-content a:hover {
    text-decoration: underline;
}

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

.page-about__feature-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
}

.page-about__feature-icon,
.page-about__feature-card-image {
    width: 100%;
    max-width: 200px; /* Feature card images can be smaller, but not below 200px */
    height: auto;
    object-fit: cover;
    margin: 0 auto 20px;
    border-radius: 8px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-about__feature-title {
    font-size: 1.5em;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-about__cta-section {
    text-align: center;
    padding-bottom: 60px;
}

.page-about__cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-about__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    min-width: 180px; /* Ensure buttons have a decent minimum width */
}

.page-about__btn--primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button primary gradient */
    color: #F2FFF6; /* Text Main */
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-about__btn--primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 7px 20px rgba(42, 209, 111, 0.6);
}

.page-about__btn--secondary {
    background-color: transparent;
    border: 2px solid #2AD16F; /* Primary button color for border */
    color: #2AD16F; /* Primary button color for text */
}

.page-about__btn--secondary:hover {
    background-color: #2AD16F;
    color: #F2FFF6;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-about__hero-content {
        padding: 0 20px 30px;
    }

    .page-about__main-title {
        font-size: clamp(2em, 5vw, 2.8em);
    }

    .page-about__section-title {
        font-size: 2em;
        margin: 50px 0 30px;
    }

    .page-about__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-about__content-wrapper:nth-child(even) {
        flex-direction: column; /* Reset alternate layout for mobile */
    }

    .page-about__image {
        max-width: 80%;
        margin-bottom: 30px;
    }

    .page-about__text-content {
        text-align: left;
    }

    .page-about__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-about__container {
        padding: 15px;
    }

    .page-about__hero-content {
        padding: 0 15px 25px;
    }

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

    .page-about__description {
        font-size: 1em;
    }

    .page-about__section-title {
        font-size: 1.8em;
        margin: 40px 0 25px;
    }

    .page-about__image {
        max-width: 90%;
        min-width: 200px; /* Ensure mobile images are still large enough */
        min-height: 200px;
    }

    .page-about__feature-card {
        padding: 20px;
    }

    .page-about__feature-icon,
    .page-about__feature-card-image {
        max-width: 180px; /* Keep above 200px, but allow slight shrinkage */
        min-width: 200px; /* Still enforce minimum 200px */
        min-height: 200px;
    }

    .page-about__features-grid {
        grid-template-columns: 1fr; /* Single column layout for very small screens */
    }

    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
        min-width: unset;
        width: 100%;
    }

    .page-about__cta-buttons {
        flex-direction: column;
    }

    /* Mobile content area image overflow fix */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure color contrast for text */
.page-about p, .page-about li {
    color: #F2FFF6; /* Text Main */
}
.page-about__description {
    color: #A7D9B8; /* Text Secondary */
}
.page-about__main-title, .page-about__section-title, .page-about__feature-title {
    color: #F2C14E; /* Gold */
}