.page-about {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    line-height: 1.6;
    font-family: Arial, sans-serif; /* Roboto vibe */
}

/* Hero Section */
.page-about__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* Small top padding, larger bottom */
    background: linear-gradient(180deg, #11A84E 0%, #08160F 100%); /* Blend hero with background */
    overflow: hidden; /* Ensure image doesn't cause overflow */
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-about__hero-content {
    max-width: 800px;
    width: 100%;
    z-index: 1; /* Ensure content is above any background elements but not on image */
}

.page-about__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E; /* Gold */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

.page-about__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* General Section Styling */
.page-about__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-about__description-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

/* Container for sections */
.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Mission & Vision Section */
.page-about__mission-vision-section {
    background-color: #08160F; /* Background */
    padding: 60px 0;
}

.page-about__mission-vision-section .page-about__container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-about__mission-vision-section .page-about__card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__mission-vision-section .page-about__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-about__card-title {
    font-size: 1.8rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.page-about__card-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
    background-color: #08160F; /* Background */
    padding: 60px 0;
}

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

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

.page-about__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-about__feature-icon {
    width: 100%; /* Make image responsive */
    max-width: 300px; /* Constrain max width of icon */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
    object-fit: cover;
}

.page-about__feature-title {
    font-size: 1.5rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: 600;
}

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

/* Responsible Gaming Section */
.page-about__responsible-gaming-section {
    background-color: #08160F; /* Background */
    padding: 60px 0;
    text-align: center;
}

.page-about__learn-more-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__learn-more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.page-about__contact-section {
    background-color: #08160F; /* Background */
    padding: 60px 0 80px;
    text-align: center;
}

.page-about__contact-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__hero-section {
        padding-bottom: 30px;
    }
    .page-about__main-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    .page-about__intro-text {
        font-size: 1rem;
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-about__section-title {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
    .page-about__mission-vision-section .page-about__card {
        padding: 25px;
    }
    .page-about__card-title {
        font-size: 1.6rem;
    }
    .page-about__feature-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 10px 15px 25px;
    }
    .page-about__hero-image-wrapper {
        margin-bottom: 25px;
    }
    .page-about__hero-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }
    .page-about__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-about__intro-text {
        font-size: 0.95rem;
    }
    .page-about__cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    .page-about__section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    .page-about__description-text {
        font-size: 0.9rem;
    }
    .page-about__container {
        padding: 30px 15px;
    }
    .page-about__mission-vision-section .page-about__card {
        min-width: unset;
        width: 100%;
        margin-bottom: 20px;
    }
    .page-about__mission-vision-section .page-about__container {
        flex-direction: column;
        gap: 20px;
    }
    .page-about__features-grid {
        grid-template-columns: 1fr;
    }
    .page-about__feature-icon {
        max-width: 250px; /* Adjust for smaller screens */
    }
    .page-about__learn-more-button, .page-about__contact-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    /* Mobile image overflow fix */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-about__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-about__intro-text {
        font-size: 0.9rem;
    }
    .page-about__cta-button {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
    .page-about__section-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }
    .page-about__card-title {
        font-size: 1.4rem;
    }
    .page-about__feature-title {
        font-size: 1.2rem;
    }
    .page-about__feature-icon {
        max-width: 200px; /* Adjust for smaller screens */
    }
}