/* 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;
}

/* Hero Section */
.page-about__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A2463 0%, #3a5c9d 100%); /* Darker blue to slightly lighter blue for better text contrast */
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #E0B143;
}

.page-about__hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-about__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #E0B143; /* Gold for main title */
    font-weight: bold;
}

.page-about__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-about__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-about__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styling */
.page-about__section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.page-about__section-title {
    font-size: 2.5em;
    color: #0A2463;
    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: #E0B143;
    border-radius: 2px;
}

/* Story Section */
.page-about__section--story .page-about__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page-about__text-content {
    flex: 2;
    min-width: 300px;
    font-size: 1.1em;
    color: #555;
}

.page-about__text-content p {
    margin-bottom: 15px;
}

.page-about__image-content {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

/* Mission & Vision Section */
.page-about__section--mission-vision .page-about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-about__card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid #0A2463;
}

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

.page-about__card p {
    color: #666;
    font-size: 1.05em;
}

/* Values Section */
.page-about__section--values {
    background-color: #f2f4f7;
}

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

.page-about__value-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

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

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

.page-about__value-item p {
    color: #777;
    font-size: 0.95em;
}

/* CTA Section */
.page-about__section--cta {
    background-color: #0A2463; /* Dark blue background */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.page-about__cta-content h2 {
    color: #E0B143; /* Gold title */
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-about__cta-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F0F0F0;
}

.page-about__btn--secondary {
    background-color: #E0B143; /* Gold button */
    color: #0A2463; /* Dark blue text */
    border: 2px solid #E0B143;
}

.page-about__btn--secondary:hover {
    background-color: #f2c76e;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero {
        padding: 60px 20px;
    }
    .page-about__title {
        font-size: 2.5em;
    }
    .page-about__subtitle {
        font-size: 1.2em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__section--story .page-about__content-wrapper {
        flex-direction: column;
    }
    .page-about__text-content, .page-about__image-content {
        min-width: unset;
        width: 100%;
    }
    .page-about__cta-content h2 {
        font-size: 2.2em;
    }
    .page-about__cta-content p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 50px 15px;
    }
    .page-about__title {
        font-size: 2em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-about__grid, .page-about__values-list {
        grid-template-columns: 1fr;
    }
    .page-about__card, .page-about__value-item {
        padding: 20px;
    }
    .page-about__cta-content h2 {
        font-size: 1.8em;
    }
    .page-about__cta-content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-about__hero {
        padding: 40px 10px;
    }
    .page-about__title {
        font-size: 1.8em;
    }
    .page-about__subtitle {
        font-size: 0.9em;
    }
    .page-about__btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .page-about__section {
        padding: 30px 0;
    }
    .page-about__section-title {
        font-size: 1.5em;
        margin-bottom: 25px;
    }
    .page-about__card-title {
        font-size: 1.5em;
    }
    .page-about__value-title {
        font-size: 1.3em;
    }
    .page-about__cta-content h2 {
        font-size: 1.6em;
    }
}