.page-about {
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    padding-top: 10px; /* Small top padding for the first section, relying on body for header offset */
}

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

/* Hero Section */
.page-about__hero-section {
    display: flex;
    flex-direction: column; /* Default to column for mobile first, then adjust for desktop */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background-color: #100224; /* Deep purple black */
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
    filter: none; /* No filter on images */
}

.page-about__hero-content {
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
}

.page-about__main-title {
    font-size: clamp(2rem, 5vw, 3rem); /* H1 font-size with clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFF3E6; /* Text Main */
    max-width: 100%; /* Ensure it doesn't overflow */
}

.page-about__intro-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF3E6; /* Text Main */
}

.page-about__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 44px; /* Ensure touch target size */
}

.page-about__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 140, 26, 0.4);
}

/* Section Titles */
.page-about__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* H2 font-size with clamp */
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF3E6; /* Text Main */
    padding-top: 20px;
}

.page-about__section-title--gradient {
    background: linear-gradient(90deg, #FFB04D, #FF8C1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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

.page-about__mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.page-about__mission-card,
.page-about__vision-card {
    background-color: #17191F; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #A84F0C; /* Border */
    min-width: 200px; /* Minimum card size */
}

.page-about__card-image {
    width: 100%;
    max-width: 300px; /* Constraint for card image */
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
    filter: none; /* No filter on images */
}

.page-about__card-title {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FF8C1A; /* Primary color */
}

.page-about__card-text {
    font-size: 1em;
    color: #FFF3E6; /* Text Main */
}

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

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

.page-about__feature-card {
    background-color: #17191F; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #A84F0C; /* Border */
    min-width: 200px; /* Minimum card size */
}

.page-about__feature-icon {
    width: 100%;
    max-width: 250px; /* Constraint for feature icon */
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
    filter: none; /* No filter on images */
}

.page-about__feature-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FF8C1A; /* Primary color */
}

.page-about__feature-description {
    font-size: 0.95em;
    color: #FFF3E6; /* Text Main */
}

/* History Section */
.page-about__history-section {
    padding: 60px 0;
    background-color: #0D0E12; /* Background */
}

.page-about__history-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.page-about__history-content p {
    margin-bottom: 20px;
    color: #FFF3E6; /* Text Main */
}

.page-about__history-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
    filter: none; /* No filter on images */
}

/* Responsible Gambling Section */
.page-about__responsible-gambling-section {
    padding: 60px 0;
    text-align: center;
    background-color: #17191F; /* Card BG */
}

.page-about__responsible-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF3E6; /* Text Main */
}

.page-about__secondary-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #83a1f2; /* Blue pill button */
    color: #FFF3E6; /* Text Main */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s ease;
    min-height: 44px; /* Ensure touch target size */
}

.page-about__secondary-button:hover {
    background-color: #688cec; /* Blue pill hover */
}

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

.page-about__contact-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF3E6; /* Text Main */
}

/* Responsive Adjustments */
@media (min-width: 850px) {
    .page-about__hero-section {
        flex-direction: column; /* Keep column for image above text */
        padding-top: 40px; /* More padding for desktop */
    }
    .page-about__hero-image-wrapper {
        max-width: 1200px; /* Constrain hero image width */
    }
    .page-about__mission-vision-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 849px) {
    .page-about__hero-section {
        padding-top: 10px; /* Small top padding */
    }
    .page-about__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-about__main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    .page-about__cta-button {
        width: 100%;
        max-width: 320px; /* CTA width constraint for mobile */
        margin: 0 auto;
    }
    .page-about__card-image,
    .page-about__feature-icon,
    .page-about__history-image {
        max-width: 100%;
        height: auto;
    }
    /* Ensure all content area images are responsive */
    .page-about img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

@media (max-width: 549px) {
    .page-about__hero-content {
        padding: 15px;
    }
    .page-about__main-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }
    .page-about__intro-description,
    .page-about__responsible-description,
    .page-about__contact-description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .page-about__mission-card,
    .page-about__vision-card,
    .page-about__feature-card {
        padding: 20px;
    }
}

/* General image rules for content area - ensure min size & no filter */
.page-about img {
    min-width: 200px;
    min-height: 200px;
    filter: none; /* No filter on images */
}

.page-about__card-image,
.page-about__feature-icon,
.page-about__history-image {
    min-width: 200px;
    min-height: 200px;
    filter: none;
}
/* Ensure no CSS rules make content area images smaller than 200px */
.page-about__mission-card .page-about__card-image,
.page-about__vision-card .page-about__card-image,
.page-about__feature-card .page-about__feature-icon,
.page-about__history-section .page-about__history-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
}

/* For potential nested images in future, ensure min-width/height */
.page-about *:not(.shared-header):not(.shared-footer) img {
    min-width: 200px;
    min-height: 200px;
    filter: none;
}