/* style/about.css */

/* General Page Styles */
.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.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(even) {
    background-color: #e9ecef;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker shade of primary for contrast */
    margin-bottom: 30px;
    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: #ffc107; /* Accent color */
    border-radius: 2px;
}

.page-about__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
}

.page-about__btn--primary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-about__btn--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-about__btn--secondary:hover {
    background-color: #007bff;
    color: #fff;
}

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #007bff 0%, #4da3ff 100%); /* Lighter primary for gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

/* Story Section */
.page-about__story-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-about__story-content .page-about__text-content {
    flex: 1;
}

.page-about__story-content .page-about__image-wrapper {
    flex: 1;
}

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

/* Mission & Vision Section */
.page-about__mission-vision {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.page-about__mission-box, .page-about__vision-box {
    flex: 1;
    max-width: 500px;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-about__mission-box:hover, .page-about__vision-box:hover {
    transform: translateY(-10px);
}

.page-about__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-about__mission-box .page-about__section-title, .page-about__vision-box .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #007bff;
}

.page-about__mission-box .page-about__section-title::after, .page-about__vision-box .page-about__section-title::after {
    display: none;
}

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

.page-about__why-choose-us-content .page-about__text-content {
    flex: 1;
}

.page-about__why-choose-us-content .page-about__image-wrapper {
    flex: 1;
}

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

.page-about__feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    color: #555;
}

.page-about__feature-list li::before {
    content: '✓';
    color: #ffc107; /* Accent color */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Team Section */
.page-about__team-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1em;
    color: #555;
}

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

.page-about__team-member {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-about__team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #ffc107;
}

.page-about__member-name {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 5px;
}

.page-about__member-role {
    color: #777;
    font-style: italic;
}

/* CTA Section */
.page-about__cta {
    background-color: #007bff; /* Primary color */
    color: #fff;
    padding: 80px 0;
}

.page-about__cta .page-about__section-title {
    color: #fff;
}

.page-about__cta .page-about__section-title::after {
    background-color: #ffc107;
}

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

.page-about__cta-buttons {
    margin-top: 30px;
}

.page-about__cta .page-about__btn--primary {
    background-color: #ffc107;
    color: #007bff;
    border-color: #ffc107;
}

.page-about__cta .page-about__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.page-about__cta .page-about__btn--secondary {
    background-color: transparent;
    color: #ffc107;
    border-color: #ffc107;
}

.page-about__cta .page-about__btn--secondary:hover {
    background-color: #ffc107;
    color: #007bff;
}

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

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

    .page-about__story-content, .page-about__why-choose-us-content {
        flex-direction: column;
        text-align: center;
    }

    .page-about__mission-vision {
        flex-direction: column;
        align-items: center;
    }

    .page-about__mission-box, .page-about__vision-box {
        max-width: 100%;
    }
}

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

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

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

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

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

    .page-about__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

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

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

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

    .page-about__btn {
        width: 80%;
        margin: 10px auto;
    }
}