/* style/about.css */

/* Base styles for the about page */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #0A192F; /* Main dark blue background */
}

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

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

.page-about__section:nth-child(odd) {
    background-color: #0A192F; /* Darker section */
}

.page-about__section:nth-child(even) {
    background-color: #1A2B42; /* Slightly lighter section for contrast */
}

.page-about__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about__subtitle {
    font-size: 1.3em;
    color: #B0B0B0; /* Lighter gray for subtitles */
    margin-bottom: 40px;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    font-weight: bold;
}

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A2B42 100%);
    padding: 80px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-about__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA buttons */
    color: #0A192F; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__cta-button:hover {
    background-color: #E6B800; /* Darker gold on hover */
    transform: translateY(-3px);
}

/* Mission & Vision / Values Sections */
.page-about__content-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

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

.page-about__text-content {
    flex: 1;
    padding: 20px;
}

.page-about__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-about__text-content strong {
    color: #FFD700;
}

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

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

.page-about__value-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about__value-list li {
    background-color: #1A2B42;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-about__value-list li strong {
    color: #FFD700;
    margin-right: 10px;
}

/* Why Choose Section */
.page-about__why-choose .page-about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__grid-item {
    background-color: #1A2B42;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.page-about__grid-item:hover {
    transform: translateY(-5px);
    background-color: #2A3B52;
}

.page-about__grid-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-about__grid-item p {
    color: #B0B0B0;
    font-size: 1em;
}

.page-about__icon {
    width: 60px;
    height: 60px;
    color: #FFD700; /* Apply gold color to SVG icons if they are inlined */
    font-size: 3em; /* For icon fonts */
    object-fit: contain;
}

/* Call to Action Bottom */
.page-about__cta-bottom {
    background-color: #0A192F;
    padding: 80px 0;
}

.page-about__cta-content {
    text-align: center;
}

.page-about__cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

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

.page-about__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-about__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-about__title {
        font-size: 2.5em;
    }

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

    .page-about__content-flex {
        flex-direction: column;
        text-align: center;
    }

    .page-about__content-flex--reverse {
        flex-direction: column;
    }

    .page-about__text-content {
        padding: 0;
    }

    .page-about__image-content {
        order: -1; /* Image appears above text on mobile for reversed sections */
        margin-bottom: 30px;
    }

    .page-about__hero-image-wrapper {
        margin-top: 20px;
    }

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

    .page-about__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-about__cta-button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-about__title {
        font-size: 2em;
    }

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

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

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