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

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

.page-about__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: #FFFFFF;
    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, 193, 7, 0.1) 0%, rgba(10, 25, 49, 0) 70%);
    animation: page-about__hero-glow 15s infinite alternate;
    z-index: 0;
}

@keyframes page-about__hero-glow {
    0% { transform: scale(0.8) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 0.9; }
    100% { transform: scale(0.8) rotate(0deg); opacity: 0.7; }
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #FFC107;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f5e6ce;
    position: relative;
    z-index: 1;
}

.page-about__section {
    padding: 80px 0;
    background-color: #0A1931;
    color: #f5e6ce;
}

.page-about__section--alt-bg {
    background-color: #1a3a66;
}

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

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

.page-about__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-about__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-about__text-content {
    flex: 1;
}

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

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
}

.page-about__image:hover {
    transform: translateY(-5px);
}

.page-about__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f5e6ce;
}

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

.page-about__value-item {
    background-color: #1a3a66;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

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

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
}

.page-about__value-title {
    font-size: 1.6em;
    color: #FFC107;
    margin-bottom: 15px;
}

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    position: relative;
    z-index: 1;
}

.page-about__btn--primary {
    background-color: #FFC107;
    color: #0A1931;
    border: 2px solid #FFC107;
}

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

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

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

.page-about__btn--outline {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-about__btn--outline:hover {
    background-color: #FFC107;
    color: #0A1931;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-about__cta {
    text-align: center;
    padding: 80px 0;
}

.page-about__cta-content {
    max-width: 800px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__hero-subtitle {
        font-size: 1.2em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-about__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-about__image-content {
        margin-top: 30px;
    }
    .page-about__values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-about__value-item {
        padding: 25px;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0 60px;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-subtitle {
        font-size: 1em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-about__paragraph {
        font-size: 1em;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__hero-subtitle {
        font-size: 0.9em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__btn {
        margin: 5px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .page-about__cta-title {
        font-size: 1.5em;
    }
}