/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-about__hero-section {
    background-color: #0A2463; /* Main brand color */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.9), rgba(255, 215, 0, 0.3)); /* Gradient with brand colors */
    z-index: 1;
}

.page-about__hero-title,
.page-about__hero-description,
.page-about__hero-image {
    position: relative;
    z-index: 2;
}

.page-about__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary brand color */
}

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

.page-about__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.page-about__section-title {
    font-size: 2.2em;
    color: #0A2463; /* Main brand color */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.page-about__mission-vision-section,
.page-about__team-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-about__mission-vision-section {
    background-color: #ffffff;
}

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

.page-about__two-col--reverse {
    flex-direction: row-reverse;
}

.page-about__content-block,
.page-about__image-block {
    flex: 1;
}

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

.page-about__content-block p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-about__values-section {
    background-color: #f0f4f8;
    padding: 80px 0;
}

.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: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-about__value-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

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

.page-about__cta-section {
    background-color: #FFD700; /* Auxiliary brand color */
    padding: 80px 0;
    text-align: center;
    color: #0A2463; /* Main brand color for text on gold background */
}

.page-about__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0A2463;
}

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

.page-about__cta-button {
    display: inline-block;
    background-color: #0A2463; /* Main brand color */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button:hover {
    background-color: #1a3e81; /* Slightly darker blue */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-about__highlight {
    color: #0A2463;
    font-weight: bold;
}

.page-about__cta-section .page-about__highlight {
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2em;
    }

    .page-about__section-title {
        font-size: 1.8em;
    }

    .page-about__hero-description,
    .page-about__cta-description {
        font-size: 1em;
    }

    .page-about__two-col {
        flex-direction: column;
    }

    .page-about__two-col--reverse {
        flex-direction: column;
    }

    .page-about__values-grid {
        grid-template-columns: 1fr;
    }

    .page-about__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.6em;
    }

    .page-about__section-title {
        font-size: 1.5em;
    }

    .page-about__cta-title {
        font-size: 1.6em;
    }

    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}