.page-about {
    background-color: #F4F7FB;
    color: #1F2D3D;
    line-height: 1.6;
    padding-bottom: 40px;
}

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

.page-about__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Minimal top padding, rely on body for header offset */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.page-about__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-about__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-about__main-title {
    font-size: clamp(2.2em, 4vw, 3.2em);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-about__intro-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #E0EFFF;
}

.page-about__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-about__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-about__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-about__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.5);
}

.page-about__btn--secondary {
    background-color: #FFFFFF;
    color: #2F6BFF;
    border: 1px solid #2F6BFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-about__btn--secondary:hover {
    background-color: #E0EFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-about__mission-section,
.page-about__values-section,
.page-about__why-choose-us-section,
.page-about__responsible-gaming-section,
.page-about__contact-section {
    padding: 60px 0;
}

.page-about__mission-section {
    background-color: #FFFFFF;
    border-radius: 12px;
    margin-top: -80px; /* Overlap with hero for visual flow */
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding-top: 80px;
}

.page-about__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1F2D3D;
}

.page-about__section-text {
    font-size: 1.05em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #1F2D3D;
}

.page-about__image-wrapper {
    margin-top: 30px;
    text-align: center;
}

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

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

.page-about__value-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF;
}

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

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

.page-about__card-text {
    font-size: 0.95em;
    color: #1F2D3D;
}

.page-about__why-choose-us-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-about__why-choose-us-text {
    flex: 1;
    min-width: 300px;
}

.page-about__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.page-about__feature-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #1F2D3D;
}

.page-about__feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2F6BFF;
    font-weight: bold;
}

.page-about__responsible-gaming-section {
    text-align: center;
    background-color: #F4F7FB;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-about__contact-section {
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    padding: 80px 0;
}

@media (max-width: 1024px) {
    .page-about__hero-section {
        padding-bottom: 40px;
    }

    .page-about__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-about__main-title {
        font-size: clamp(2em, 4.5vw, 2.8em);
    }

    .page-about__intro-description {
        font-size: 1em;
    }

    .page-about__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-about__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-about__why-choose-us-content {
        flex-direction: column;
        text-align: center;
    }

    .page-about__why-choose-us-text {
        order: 2;
    }

    .page-about__why-choose-us-content .page-about__image-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-bottom: 30px;
    }

    .page-about__hero-image-wrapper {
        margin-bottom: 15px;
    }

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

    .page-about__intro-description {
        font-size: 0.95em;
    }

    .page-about__btn {
        width: 90%;
        padding: 12px 25px;
    }

    .page-about__mission-section,
    .page-about__values-section,
    .page-about__why-choose-us-section,
    .page-about__responsible-gaming-section,
    .page-about__contact-section {
        padding: 40px 0;
    }

    .page-about__mission-section {
        margin-top: -60px;
        padding-top: 60px;
    }

    .page-about__section-title {
        font-size: clamp(1.6em, 5vw, 2.2em);
        margin-bottom: 30px;
    }

    .page-about__section-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

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

    .page-about__value-card {
        padding: 25px;
    }

    .page-about__card-title {
        font-size: 1.2em;
    }

    .page-about__feature-item {
        font-size: 1em;
        margin-bottom: 10px;
    }

    /* Ensure all images within .page-about are responsive and do not overflow */
    .page-about img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-section {
        padding-bottom: 20px;
    }

    .page-about__main-title {
        font-size: clamp(1.6em, 7vw, 2em);
        margin-bottom: 15px;
    }

    .page-about__intro-description {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .page-about__btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .page-about__mission-section,
    .page-about__values-section,
    .page-about__why-choose-us-section,
    .page-about__responsible-gaming-section,
    .page-about__contact-section {
        padding: 30px 0;
    }

    .page-about__mission-section {
        margin-top: -40px;
        padding-top: 40px;
    }

    .page-about__section-title {
        font-size: clamp(1.4em, 6vw, 1.8em);
        margin-bottom: 25px;
    }

    .page-about__section-text {
        font-size: 0.95em;
    }

    .page-about__value-card {
        padding: 20px;
    }

    .page-about__card-title {
        font-size: 1.1em;
    }
}