body {
    background-color: #08160F;
    color: #F2FFF6;
}

.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 40px;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    max-height: 675px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-about__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-about__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2FFF6;
    margin-bottom: 20px;
    max-width: 100%;
}

.page-about__hero-description {
    color: #A7D9B8;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-about__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-about__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

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

.page-about__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 40px;
    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: #2AD16F;
    border-radius: 2px;
}

.page-about__section-description {
    font-size: 1.05em;
    line-height: 1.7;
    color: #A7D9B8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

.page-about__mission-section .page-about__content-wrapper {
    flex-direction: row;
    text-align: left;
    justify-content: center;
}

.page-about__mission-section .page-about__content-wrapper p {
    max-width: 50%;
    text-align: left;
    margin: 0;
}

.page-about__image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-about__feature-card {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-about__feature-title {
    font-size: 1.5em;
    color: #F2FFF6;
    margin-bottom: 15px;
}

.page-about__feature-description {
    color: #A7D9B8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-about__feature-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 200px; /* Ensure min size for content images */
    object-fit: cover;
    border-radius: 8px;
}

.page-about__responsible-gaming-section {
    background-color: #0A4B2C;
    padding: 60px 0;
    border-radius: 12px;
    text-align: center;
}

.page-about__responsible-gaming-section .page-about__section-title {
    color: #F2FFF6;
}

.page-about__responsible-gaming-section .page-about__section-description {
    max-width: 700px;
    margin-bottom: 40px;
}

.page-about__learn-more-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #22C768;
    color: #08160F;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-about__learn-more-button:hover {
    background-color: #11A84E;
}

.page-about__join-us-section {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-about__features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-about__mission-section .page-about__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-about__mission-section .page-about__content-wrapper p {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-about__main-title {
        font-size: 2em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__features-grid {
        grid-template-columns: 1fr;
    }
    .page-about__section {
        padding: 30px 0;
    }
    /* Mobile image overflow prevention */
    .page-about__container img,
    .page-about__hero-section img,
    .page-about__feature-card img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-about__main-title {
        font-size: 1.7em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-about__learn-more-button {
        padding: 8px 18px;
        font-size: 0.9em;
    }
    .page-about__feature-title {
        font-size: 1.3em;
    }
    .page-about__feature-card {
        padding: 20px;
    }
}