/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light gray for general text */
    line-height: 1.6;
    background-color: #0A192F;
}

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

.page-about__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a61 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    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 auto;
    color: #f0f0f0;
}

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

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

.page-about__mission-vision-section, 
.page-about__why-choose-us-section, 
.page-about__responsible-gambling-section {
    padding: 80px 0;
    background-color: #0A192F;
}

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

.page-about__grid--reverse {
    flex-direction: row-reverse;
}

.page-about__content-block {
    flex: 1;
    padding: 20px;
}

.page-about__content-block h2 {
    text-align: left;
    margin-bottom: 25px;
    padding-top: 0;
}

.page-about__content-block h2::after {
    margin-left: 0;
}

.page-about__content-block p {
    margin-bottom: 15px;
    color: #c0c0c0;
}

.page-about__content-block strong {
    color: #FFD700;
}

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

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-about__feature-item:hover {
    transform: translateY(-10px);
    background-color: #2a3d5e;
}

.page-about__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-about__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-about__feature-item p {
    color: #c0c0c0;
}

.page-about__btn {
    display: inline-block;
    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;
    margin-top: 30px;
    cursor: pointer;
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-about__btn--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-about__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-about__cta-section {
    background: linear-gradient(135deg, #1a2a44 0%, #0A192F 100%);
    padding: 80px 0;
    text-align: center;
    color: #f0f0f0;
}

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

.page-about__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__grid {
        flex-direction: column;
    }
    .page-about__grid--reverse {
        flex-direction: column;
    }
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 80px 0;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__features-grid {
        grid-template-columns: 1fr;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-description {
        font-size: 0.9em;
    }
}