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

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    background-color: #0A4B2C; /* Deep Green for hero background */
    text-align: center;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-about__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    box-sizing: border-box;
    color: #F2FFF6;
}

.page-about__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-about__hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-about__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    font-weight: bold;
}

.page-about__sub-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #22C768; /* Auxiliary */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__text-block {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-about__text-secondary {
    color: #A7D9B8; /* Text Secondary */
}

.page-about__introduction-section, 
.page-about__commitment-section, 
.page-about__games-services-section, 
.page-about__team-section, 
.page-about__faq-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

.page-about__history-section, 
.page-about__why-choose-section, 
.page-about__responsible-gaming-section, 
.page-about__cta-section {
    padding: 60px 0;
    background-color: #11271B; /* Card BG */
}

.page-about__image-block {
    text-align: center;
    margin-bottom: 30px;
}

.page-about__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

.page-about__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-about__list-item {
    background-color: #0A4B2C; /* Deep Green */
    border-left: 5px solid #22C768;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-about__list-title {
    color: #F2C14E; /* Gold */
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.page-about__list-description {
    color: #F2FFF6; /* Text Main */
    font-size: 0.95rem;
}

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

.page-about__game-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-about__game-title {
    font-size: 1.4rem;
    color: #22C768; /* Auxiliary */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-about__game-title a {
    color: #22C768; /* Auxiliary */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about__game-title a:hover {
    color: #F2C14E; /* Gold */
}

.page-about__game-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.9rem;
    padding: 0 15px;
}

.page-about__cta-button--large {
    padding: 15px 35px;
    font-size: 1.2rem;
    margin-top: 20px;
}

.page-about__faq-list {
    margin-top: 30px;
}

.page-about__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none; /* For details summary */
}

.page-about__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-about__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #22C768; /* Auxiliary */
}

.page-about__faq-item[open] .page-about__faq-toggle {
    transform: rotate(45deg);
}

.page-about__faq-answer {
    padding: 20px;
    color: #A7D9B8; /* Text Secondary */
    background-color: #11271B; /* Card BG */
    border-top: 1px solid #2E7A4E; /* Border */
    font-size: 0.95rem;
}

.page-about__faq-answer p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-about__hero-content {
        max-width: 600px;
        padding: 15px;
    }
    .page-about__main-title {
        font-size: clamp(1.8rem, 4.5vw, 3rem);
    }
    .page-about__hero-description {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }
}

@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-about__hero-section {
        padding: 10px 0;
    }

    .page-about__hero-content {
        position: static;
        transform: none;
        width: 90%;
        max-width: 100%;
        margin: 20px auto;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .page-about__hero-image {
        height: 300px; /* Adjust hero image height for mobile */
    }

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

    .page-about__hero-description {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        margin-bottom: 20px;
    }

    .page-about__cta-button, .page-about__cta-button--large {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 1rem;
    }

    .page-about__container {
        padding: 0 15px;
    }

    .page-about__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
        padding-top: 20px;
    }

    .page-about__sub-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-top: 25px;
    }

    .page-about__list-item {
        padding: 15px;
    }

    .page-about__list-title {
        font-size: 1.2rem;
    }

    .page-about__game-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-about__game-image {
        height: 180px;
    }

    .page-about__game-title {
        font-size: 1.2rem;
    }

    .page-about__faq-question {
        padding: 15px;
        font-size: 1rem;
    }

    .page-about__faq-answer {
        padding: 15px;
    }

    /* Mobile image and container overrides */
    .page-about img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__section, .page-about__card, .page-about__container, .page-about__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-about__hero-section {
        padding-top: 10px !important;
    }
    .page-about__game-cards {
        padding-left: 0;
        padding-right: 0;
    }
    .page-about__game-card {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .page-about__hero-content {
        width: 95%;
    }
    .page-about__main-title {
        font-size: clamp(1.2rem, 8vw, 2rem);
    }
    .page-about__hero-description {
        font-size: clamp(0.85rem, 4vw, 0.95rem);
    }
    .page-about__cta-button, .page-about__cta-button--large {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    .page-about__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    .page-about__sub-title {
        font-size: clamp(1rem, 5vw, 1.3rem);
    }
    .page-about__text-block, .page-about__list-description, .page-about__game-description, .page-about__faq-answer p {
        font-size: 0.9rem;
    }
    .page-about__game-image {
        height: 150px;
    }
    .page-about__faq-question {
        font-size: 0.95rem;
    }
}