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

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

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

.page-about__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

/* General Section Styling */
.page-about__mission-section, .page-about__values-section, .page-about__why-trust-us-section, .page-about__cta-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-about__section-title {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

/* Content Grid */
.page-about__content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page-about__text-content {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.page-about__image--center {
    display: block;
    margin: 40px auto 0;
}

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

.page-about__value-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px 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 6px 20px rgba(0, 0, 0, 0.1);
}

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

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

/* Why Trust Us Section */
.page-about__why-trust-us-intro {
    text-align: center;
    font-size: 1.1em;
    color: #444;
    margin-bottom: 30px;
}

.page-about__trust-points {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-about__trust-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.page-about__trust-points li i {
    color: #FFCC00;
    font-size: 1.5em;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.page-about__trust-points li p {
    margin: 0;
}

.page-about__trust-points li strong {
    color: #003366;
}

/* CTA Section */
.page-about__cta-section {
    background: linear-gradient(90deg, #003366, #004d99);
    text-align: center;
    color: #fff;
    padding: 80px 0;
    margin-top: 40px;
}

.page-about__cta-title {
    font-size: 2.5em;
    color: #FFCC00;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

.page-about__cta-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    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 10px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

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

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

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

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

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

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

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

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

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

    .page-about__value-title {
        font-size: 1.3em;
    }

    .page-about__trust-points li {
        font-size: 0.95em;
    }

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