/* style/about.css */

/* Base styles for the About Us page */
.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A2E59; /* Primary dark blue background */
}

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

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

.page-about__section:nth-of-type(even) {
    background-color: #1a4a7e; /* Slightly lighter blue for alternating sections */
}

.page-about__section-title {
    font-size: 2.8em;
    color: #FFA500; /* Orange for titles */
    margin-bottom: 40px;
    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: #FFA500;
    border-radius: 2px;
}

.page-about__highlight {
    color: #FFA500;
}

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

.page-about__paragraph--large {
    font-size: 1.25em;
    font-weight: bold;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__link-text {
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
}

.page-about__link-text:hover {
    text-decoration: underline;
    color: #ffc04d; /* Lighter orange on hover */
}

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #0A2E59, #1a4a7e);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

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

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

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

.page-about__button--primary {
    background-color: #FFA500;
    color: #0A2E59;
}

.page-about__button--primary:hover {
    background-color: #ffc04d;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-about__button--secondary {
    background-color: transparent;
    color: #FFA500;
    border: 2px solid #FFA500;
}

.page-about__button--secondary:hover {
    background-color: #FFA500;
    color: #0A2E59;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Vision & Mission Section */
.page-about__vision-mission .page-about__container {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-about__vision-mission .page-about__content-block {
    flex: 1;
}

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

.page-about__vision-mission .page-about__section-title {
    text-align: left;
}

.page-about__vision-mission .page-about__section-title::after {
    left: 0;
    transform: translateX(0);
}

/* Why Us Section */
.page-about__why-us .page-about__container {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-about__why-us .page-about__content-block {
    flex: 1;
}

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

.page-about__why-us .page-about__section-title {
    text-align: left;
}

.page-about__why-us .page-about__section-title::after {
    left: 0;
    transform: translateX(0);
}

.page-about__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-about__list-item {
    background-color: #0A2E59; /* Darker background for list items */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.page-about__list-title {
    font-size: 1.5em;
    color: #FFA500;
    margin-bottom: 10px;
}

.page-about__list-description {
    color: #c0c0c0;
    font-size: 1em;
}

/* Commitment Section */
.page-about__commitment .page-about__section-title {
    text-align: center;
}

.page-about__commitment .page-about__section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

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

.page-about__image--centered {
    margin-top: 40px;
    max-width: 700px;
}

/* CTA Section */
.page-about__cta {
    background: linear-gradient(45deg, #0A2E59, #FFA500);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

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

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

.page-about__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }

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

    .page-about__vision-mission .page-about__container,
    .page-about__why-us .page-about__container {
        flex-direction: column;
        text-align: center;
    }

    .page-about__vision-mission .page-about__section-title,
    .page-about__why-us .page-about__section-title {
        text-align: center;
    }

    .page-about__vision-mission .page-about__section-title::after,
    .page-about__why-us .page-about__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .page-about__why-us .page-about__container {
        flex-direction: column-reverse; /* Image above text on mobile for why us */
    }

    .page-about__hero-actions,
    .page-about__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-about__button {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0 60px;
    }

    .page-about__hero-title {
        font-size: 2.2em;
    }

    .page-about__hero-description {
        font-size: 1.1em;
    }

    .page-about__section {
        padding: 60px 0;
    }

    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-about__paragraph {
        font-size: 1em;
    }

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

    .page-about__cta-description {
        font-size: 1.1em;
    }
}

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

    .page-about__hero-description {
        font-size: 0.95em;
    }

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

    .page-about__paragraph {
        font-size: 0.9em;
    }

    .page-about__button {
        padding: 12px 20px;
        font-size: 1em;
        width: 90%;
    }

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

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