.page-about {
    font-family: Arial, sans-serif;
    color: #000000; /* Dark text for light background */
    line-height: 1.6;
    background-color: #FFFFFF; /* Ensures consistency with body background */
}

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

/* Hero Section */
.page-about__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Desktop header offset */
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-about__hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF; /* White text over hero image */
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for readability */
    border-radius: 10px;
}

.page-about__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FCBC45; /* Gold accent for title */
}

.page-about__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-about__hero-cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-about__hero-cta-button:hover {
    background-color: #e0a53a;
}

/* General Section Styles */
.page-about__section {
    padding: 60px 0;
    text-align: center;
}

.page-about__section:nth-of-type(even) {
    background-color: #f8f8f8;
}

.page-about__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-about__sub-title {
    font-size: 1.6em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__section-intro {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__section-text {
    font-size: 1em;
    margin-bottom: 20px;
    color: #333333;
    text-align: left;
}

.page-about__section-text a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

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

.page-about__secondary-cta-button {
    display: inline-block;
    background-color: #000000; /* Dark button for secondary CTAs */
    color: #FCBC45; /* Gold text */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-about__secondary-cta-button:hover {
    background-color: #333333;
    color: #FFFFFF;
}

/* Story Section */
.page-about__story-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Mission Section */
.page-about__mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-about__mission-text-block {
    flex: 1;
}

.page-about__mission-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Values Section */
.page-about__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-about__value-card {
    background-color: #FFFFFF;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-about__card-title {
    font-size: 1.4em;
    color: #FCBC45;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__card-description {
    color: #333333;
    font-size: 0.95em;
}

.page-about__values-image {
    margin-top: 50px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Offerings Section */
.page-about__offerings-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-about__offerings-list-item {
    background-color: #f0f0f0;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #FCBC45;
    border-radius: 5px;
    font-size: 1.05em;
    color: #333333;
}

.page-about__offerings-list-item strong {
    color: #000000;
}

.page-about__offerings-list-item a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
}

.page-about__offerings-list-item a:hover {
    text-decoration: underline;
    color: #FCBC45;
}

/* Commitment Section */
.page-about__commitment-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.page-about__commitment-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Responsible Gaming Section */
.page-about__responsible-gaming-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-about__responsible-gaming-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-about__responsible-gaming-text-block {
    flex: 1;
}

/* Call to Action Section */
.page-about__cta-section {
    background-color: #000000; /* Dark background for CTA */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-about__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Gold accent */
}

.page-about__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for gold button */
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__cta-button:hover {
    background-color: #e0a53a;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__mission-content, .page-about__responsible-gaming-content {
        flex-direction: column;
        text-align: center;
    }
    .page-about__mission-image, .page-about__responsible-gaming-image {
        max-width: 80%;
        margin-top: 30px;
    }
    .page-about__story-content, .page-about__commitment-content {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 120px); /* Mobile header offset */
    }
    .page-about__hero-content {
        padding: 20px;
    }
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__mission-image, .page-about__responsible-gaming-image, .page-about__values-image, .page-about__commitment-image {
        max-width: 100%;
        height: auto; /* Ensures image does not overflow */
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-text {
        font-size: 1em;
    }
    .page-about__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    /* Ensure content images are not smaller than 200px */
    .page-about__hero-image,
    .page-about__mission-image,
    .page-about__values-image,
    .page-about__commitment-image,
    .page-about__responsible-gaming-image {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.5em;
    }
    .page-about__hero-description {
        font-size: 0.9em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__sub-title {
        font-size: 1.3em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
}

/* Global image rules for content area to prevent small icons */
.page-about img {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow auto width to respect aspect ratio */
    height: auto; /* Allow auto height to respect aspect ratio */
    max-width: 100%; /* Ensure images are responsive */
    display: block; /* Prevent extra space below images */
}

/* Specific overrides for mobile to ensure responsiveness */
@media (max-width: 768px) {
    .page-about img {
        max-width: 100% !important;
        height: auto !important;
    }
}