.page-about {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 20px;
}

.page-about__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    padding-top: 10px; /* Small top padding to avoid being completely flush with header */
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5;
    object-fit: cover;
    object-position: center;
    filter: none; /* Ensure no CSS filters are applied */
}

.page-about__hero-content {
    text-align: center;
    padding: 20px 15px;
    background-color: #11271B; /* Card BG color for hero content */
    margin: -60px auto 0; /* Pull up over the image slightly for visual flow */
    position: relative;
    z-index: 1;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: bold;
    color: #F2C14E; /* Gold color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 100%;
}

.page-about__description {
    font-size: 1.1rem;
    color: #A7D9B8;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
    min-width: 150px;
}

.page-about__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-about__cta-button--small {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.page-about__section {
    padding: 40px 0;
    margin-bottom: 20px;
    background-color: #08160F;
}

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

.page-about__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: #F2C14E;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #11A84E;
    border-radius: 2px;
}

.page-about__paragraph {
    font-size: 1rem;
    color: #F2FFF6;
    margin-bottom: 20px;
    text-align: justify;
}

.page-about__our-story .page-about__paragraph, 
.page-about__responsible-gaming .page-about__paragraph, 
.page-about__contact-us .page-about__paragraph {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-about__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    filter: none; /* Ensure no CSS filters are applied */
    min-width: 200px;
    min-height: 200px;
}

.page-about__image--centered {
    margin-left: auto;
    margin-right: auto;
}

.page-about__flex-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.page-about__flex-group .page-about__text-content {
    flex: 1;
    min-width: 300px;
}

.page-about__flex-group .page-about__image {
    flex: 1;
    min-width: 300px;
    margin-top: 0;
}

.page-about__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about__list-item {
    background-color: #11271B;
    border-left: 4px solid #22C768;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    color: #F2FFF6;
    font-size: 0.95rem;
}

.page-about__list-item strong {
    color: #F2C14E;
}

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

.page-about__feature-card {
    background-color: #11271B;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

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

.page-about__feature-title {
    font-size: 1.3rem;
    color: #57E38D; /* Glow color */
    margin-bottom: 10px;
}

.page-about__feature-description {
    font-size: 0.95rem;
    color: #A7D9B8;
}

.page-about__link {
    color: #2AD16F;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.page-about__link:hover {
    color: #57E38D;
}

/* Responsive adjustments */
@media (max-width: 850px) {
    .page-about__hero-content {
        margin-top: -40px;
        padding: 15px;
    }

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

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

    .page-about__flex-group {
        flex-direction: column;
    }

    .page-about__flex-group .page-about__image {
        margin-top: 30px;
    }

    .page-about__section {
        padding: 30px 0;
    }

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

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

    /* Enforce image responsiveness and min-size for mobile */
    .page-about img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-content {
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    .page-about__container {
        padding: 0 10px;
    }
    .page-about img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Explicitly ensure min-size for mobile */
        min-height: 200px; /* Explicitly ensure min-size for mobile */
    }
}

@media (max-width: 549px) {
    .page-about__main-title {
        font-size: clamp(1.1rem, 7vw, 2rem);
    }

    .page-about__description {
        font-size: 0.95rem;
    }

    .page-about__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-about__paragraph {
        font-size: 0.9rem;
        text-align: left;
    }

    .page-about__list-item {
        font-size: 0.85rem;
    }

    .page-about__feature-title {
        font-size: 1.1rem;
    }

    .page-about__feature-description {
        font-size: 0.85rem;
    }
}