.page-about {
    background-color: #100224; /* Deep Navy from custom colors */
    color: #F3F8FF; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for first section */
}

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

.page-about__hero-section {
    position: relative;
    text-align: center;
    padding-bottom: 40px; /* Add space between image and content */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__hero-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px; /* Space between image and text */
}

.page-about__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-about__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive font size */
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(79, 168, 255, 0.5); /* Glow */
}

.page-about__intro-text {
    font-size: 1.1rem;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
    color: #F3F8FF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.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;
    background-color: #10233F; /* Card BG */
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-about__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(79, 168, 255, 0.4);
}

.page-about__section-description {
    font-size: 1.05rem;
    color: #AFC4E8; /* Text Secondary */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-about__mission-image, .page-about__values-image, .page-about__responsible-gaming-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-about__values-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-about__value-item {
    background-color: #08162B; /* Deep Navy */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #244D84; /* Border */
}

.page-about__value-heading {
    font-size: 1.5rem;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 15px;
}

.page-about__value-text {
    color: #AFC4E8; /* Text Secondary */
    font-size: 0.95rem;
}

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

.page-about__feature-card {
    background-color: #08162B; /* Deep Navy */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #244D84; /* Border */
}

.page-about__feature-icon {
    width: 100%;
    max-width: 200px; /* Max width for icons */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-about__feature-heading {
    font-size: 1.4rem;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 10px;
}

.page-about__feature-text {
    color: #AFC4E8; /* Text Secondary */
    font-size: 0.95rem;
}

.page-about__link-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #1D5FD1; /* Auxiliary color */
    color: #F3F8FF;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.page-about__link-button:hover {
    background-color: #113B7A; /* Main color */
}

.page-about__contact-section .page-about__cta-button {
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-about__hero-image {
        max-width: 100%;
    }
    .page-about__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-about__intro-text {
        font-size: 1rem;
    }
    .page-about__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .page-about__values-list, .page-about__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-about__feature-icon {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .page-about__container {
        padding: 15px;
    }
    .page-about__hero-image, .page-about__mission-image, .page-about__values-image, .page-about__responsible-gaming-image, .page-about__feature-icon {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px;
    }
    .page-about__hero-content {
        padding: 0 15px;
    }
    /* Ensure content area images do not cause overflow */
    .page-about__mission-section img, .page-about__values-section img, .page-about__why-choose-us-section img, .page-about__responsible-gaming-section img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) {
    .page-about__hero-section {
        padding-top: 0;
    }
    .page-about__main-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    .page-about__intro-text {
        font-size: 0.95rem;
    }
    .page-about__section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }
    .page-about__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .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__feature-icon {
        max-width: 180px; /* Adjust for smaller screens, but still >= 200px */
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px;
    }
}