.page-about {
    color: #ffffff; /* Light text for dark body background */
    padding-top: var(--header-offset, 120px);
}

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

.page-about__section-title,
.page-about__sub-title,
.page-about__feature-title,
.page-about__cta-title {
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: 700;
}

.page-about__sub-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
    color: #ffffff;
}

.page-about__paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-about__link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about__link:hover {
    color: #e6c200;
}

/* Hero Section */
.page-about__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #0F1217 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-about__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.page-about__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-about__button--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-about__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-about__button--secondary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-about__button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
}

.page-about__hero-image {
    display: block;
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 60px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Mission & Vision Section */
.page-about__mission-vision-section {
    padding: 80px 20px;
    background-color: #0F1217;
}

.page-about__mission-content {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.page-about__text-block {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__mission-vision-section .page-about__image {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 50px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
    padding: 80px 20px;
    background-color: #1A202C;
}

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

.page-about__feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-about__feature-icon {
    width: 100%; /* Ensure images are not too small */
    max-width: 300px; /* Example max width */
    height: auto;
    margin: 0 auto 20px auto;
    border-radius: 8px;
}

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

.page-about__feature-description {
    font-size: 1em;
    line-height: 1.7;
    color: #e0e0e0;
}

.page-about__cta-bottom {
    text-align: center;
    margin-top: 40px;
}

/* Responsible Gaming Section */
.page-about__responsible-gaming-section {
    padding: 80px 20px;
    background-color: #0F1217;
}

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

.page-about__text-content {
    flex: 1;
}

.page-about__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-about__responsible-gaming-section .page-about__image {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Call to Action Section */
.page-about__cta-section {
    background: linear-gradient(45deg, #1A202C 0%, #333d4f 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-about__cta-container {
    max-width: 800px;
}

.page-about__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-about__cta-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
    background-color: #FFD700;
    color: #1A202C;
}

.page-about__button--large:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 3em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
    .page-about__mission-content,
    .page-about__content-flex {
        flex-direction: column;
        gap: 30px;
    }
    .page-about__text-block,
    .page-about__text-content,
    .page-about__image-wrapper {
        width: 100%;
    }
    .page-about__hero-image,
    .page-about__mission-vision-section .page-about__image,
    .page-about__responsible-gaming-section .page-about__image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__sub-title {
        font-size: 1.5em;
    }
    .page-about__features-grid {
        grid-template-columns: 1fr;
    }
    .page-about__feature-icon {
        max-width: 250px;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
    .page-about__button--large {
        width: 100%;
        max-width: 300px;
    }
    /* Ensure content images do not overflow */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__cta-title {
        font-size: 1.6em;
    }
    .page-about__hero-section,
    .page-about__mission-vision-section,
    .page-about__why-choose-us-section,
    .page-about__responsible-gaming-section,
    .page-about__cta-section {
        padding: 40px 15px;
    }
    .page-about__paragraph,
    .page-about__feature-description {
        font-size: 0.95em;
    }
}