.page-about__hero-section {
    background: linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
    color: #FFF6D6;
    padding: 10px 0 60px 0; /* Small top padding, main padding for content */
    text-align: center;
    overflow: hidden;
    position: relative;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9; /* 1920x1080 */
    border-radius: 8px;
}

.page-about__hero-content {
    padding: 40px 20px 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Ensure content is above any subtle background elements */
}

.page-about__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2C14E;
    margin-bottom: 20px;
    text-align: center;
    /* Using clamp for responsive font size, avoiding fixed large values */
    font-size: clamp(1.8rem, 5vw, 3rem);
}

.page-about__intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF6D6;
}

.page-about__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

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

.page-about__cta-button--secondary {
    background: #FFD36B;
    color: #0A0A0A;
}

.page-about__cta-button--secondary:hover {
    background: #F2C14E;
}

/* General Section Styling */
.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-about__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD36B;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-about__mission-vision-section,
.page-about__why-choose-us-section,
.page-about__values-section,
.page-about__responsible-gaming-section,
.page-about__contact-cta-section {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding: 60px 0;
    border-top: 1px solid #3A2A12;
}

.page-about__mission-vision-section .page-about__container,
.page-about__responsible-gaming-section .page-about__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.page-about__text-block p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-about__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-about__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.page-about__why-choose-us-section {
    background-color: #111111;
}

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

.page-about__feature-card,
.page-about__value-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover,
.page-about__value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.2);
}

.page-about__feature-icon,
.page-about__value-icon {
    width: 100%; /* Ensure images take full width of card */
    height: auto;
    max-width: 400px; /* Max width for feature icons */
    max-height: 300px; /* Max height for feature icons */
    margin: 0 auto 20px auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.page-about__value-icon {
    max-width: 200px; /* Smaller max-width for value icons */
    max-height: 150px;
}

.page-about__feature-title,
.page-about__value-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #F2C14E;
    margin-bottom: 15px;
}

.page-about__feature-card p,
.page-about__value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #FFF6D6;
}

.page-about__learn-more-button {
    display: inline-block;
    color: #FFD36B;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.page-about__learn-more-button:hover {
    color: #F2C14E;
    text-decoration: underline;
}

.page-about__contact-cta-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-about__contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF6D6;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-about__hero-content {
        padding: 30px 15px 0;
    }

    .page-about__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .page-about__intro-text {
        font-size: 1rem;
    }

    .page-about__section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-bottom: 40px;
    }

    .page-about__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-about__image-block {
        order: -1; /* Image above text on mobile */
    }

    .page-about__text-block {
        flex: none;
        width: 100%;
    }

    .page-about__image {
        margin-bottom: 20px;
    }

    .page-about__features-grid,
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }

    .page-about__feature-icon,
    .page-about__value-icon {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .page-about__feature-title,
    .page-about__value-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .page-about__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-about__image {
        max-width: 100%;
        height: auto;
    }
    .page-about__feature-icon,
    .page-about__value-icon {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area does not cause horizontal scroll */
    .page-about__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-about__hero-section,
    .page-about__mission-vision-section,
    .page-about__why-choose-us-section,
    .page-about__values-section,
    .page-about__responsible-gaming-section,
    .page-about__contact-cta-section {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 549px) {
    .page-about__main-title {
        font-size: clamp(1.4rem, 7vw, 2.2rem);
    }
    .page-about__section-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }
    .page-about__intro-text,
    .page-about__contact-description {
        font-size: 0.9rem;
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-about__feature-card,
    .page-about__value-card {
        padding: 20px;
    }
    .page-about__feature-title,
    .page-about__value-title {
        font-size: 1.1rem;
    }
    .page-about__text-block p {
        font-size: 0.9rem;
    }
}