/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text on dark background for general sections */
    line-height: 1.6;
    background-color: #0A2240; /* Main dark background */
}

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

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

.page-about__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-about__pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page-about__pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.7; }
}

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

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title highlight */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

.page-about__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

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

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

.page-about__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2240; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2240;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-about__section {
    padding: 80px 0;
    position: relative;
}

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

.page-about__section:nth-of-type(odd) {
    background-color: #1A3A5E;
    color: #f5f5f5;
}

.page-about__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.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__grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.page-about__content {
    flex: 1;
}

.page-about__content h2 {
    margin-top: 0;
}

.page-about__content p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-about__image-wrapper {
    flex: 1;
    text-align: center;
}

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

.page-about__image--full-width {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 80%;
}

.page-about__mission-vision .page-about__grid {
    align-items: flex-start;
}

.page-about__core-values {
    background-color: #0A2240;
    color: #f5f5f5;
}

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

.page-about__value-item {
    background-color: #1A3A5E; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-about__value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-about__value-item h3 {
    font-size: 1.6em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
}

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

.page-about__why-choose-us {
    background-color: #1A3A5E;
    color: #f5f5f5;
}

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

.page-about__responsible-gaming p {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
}

.page-about__cta-section {
    background-color: #FFD700; /* Gold background */
    color: #0A2240; /* Dark blue text */
    padding: 80px 0;
    text-align: center;
}

.page-about__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #0A2240;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

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

.page-about__cta-buttons .page-about__btn--primary {
    background-color: #0A2240; /* Dark blue */
    color: #FFD700; /* Gold text */
    border-color: #0A2240;
}

.page-about__cta-buttons .page-about__btn--primary:hover {
    background-color: #1A3A5E;
    border-color: #1A3A5E;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-about__cta-buttons .page-about__btn--secondary {
    background-color: transparent;
    color: #0A2240; /* Dark blue */
    border-color: #0A2240;
}

.page-about__cta-buttons .page-about__btn--secondary:hover {
    background-color: #0A2240;
    color: #FFD700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-about__contact-info {
    background-color: #0A2240;
    padding: 40px 0;
    text-align: center;
    font-size: 1.1em;
    color: #e0e0e0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-about__contact-info a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-about__contact-info a:hover {
    text-decoration: underline;
}

.page-about .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-about a {
    color: #FFD700;
    text-decoration: none;
}

.page-about a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2.2em;
    }
    .page-about__grid {
        flex-direction: column;
        text-align: center;
    }
    .page-about__grid--reverse {
        flex-direction: column;
    }
    .page-about__content {
        order: 2;
    }
    .page-about__image-wrapper {
        order: 1;
        margin-bottom: 40px;
    }
    .page-about__values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-about__cta-title {
        font-size: 2.5em;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@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__section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-about__value-item {
        padding: 25px;
    }
    .page-about__value-icon {
        width: 60px;
        height: 60px;
    }
    .page-about__value-item h3 {
        font-size: 1.4em;
    }
    .page-about__image--full-width {
        max-width: 95%;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
    .page-about__btn {
        width: 90%;
    }
}

@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-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-about__btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-description {
        font-size: 0.9em;
    }
}