/* style/about.css */
.page-about {
    font-family: Arial, sans-serif;
    color: #fff;
    line-height: 1.6;
    background-color: #0A2463; /* Main background color */
}

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

.page-about__hero {
    background: linear-gradient(135deg, #0A2463 0%, #1A3D80 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-about__hero .page-about__container {
    position: relative;
    z-index: 2;
}

.page-about__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Auxiliary color for emphasis */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-about__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-about__hero-button:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-about__section {
    padding: 60px 0;
    background-color: #0F2D72;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__section:nth-of-type(even) {
    background-color: #0A2463;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-about__story p, .page-about__mission p, .page-about__vision p, .page-about__responsible-gaming p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    color: #E0E0E0;
}

.page-about__image-inline {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-about__mission-vision .page-about__container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-about__mission, .page-about__vision {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    background-color: #1A3D80;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-about__mission h2, .page-about__vision h2 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

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

.page-about__value-item {
    background-color: #1A3D80;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-10px);
}

.page-about__value-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-about__value-item p {
    color: #E0E0E0;
    font-size: 1em;
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    filter: brightness(1.2);
}

.page-about__responsible-gaming {
    text-align: center;
    background-color: #0F2D72;
}

.page-about__image-full-width {
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-about__button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
}

.page-about__button-secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
}

.page-about__cta {
    background: linear-gradient(90deg, #0A2463 0%, #1A3D80 100%);
    padding: 80px 0;
    text-align: center;
}

.page-about__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-about__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-about__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button:hover {
    background-color: #E6C200;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__mission-vision .page-about__container {
        flex-direction: column;
        align-items: center;
    }
    .page-about__mission, .page-about__vision {
        max-width: 90%;
    }
    .page-about__values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-about__story p, .page-about__mission p, .page-about__vision p, .page-about__responsible-gaming p {
        font-size: 0.95em;
    }
    .page-about__value-item h3 {
        font-size: 1.3em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
    .page-about__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-about__hero {
        padding: 60px 0;
    }
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__hero-description {
        font-size: 0.9em;
    }
    .page-about__hero-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__value-item {
        padding: 20px;
    }
    .page-about__cta-title {
        font-size: 1.5em;
    }
    .page-about__cta-description {
        font-size: 0.9em;
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}