/* style/about.css */
.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__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.15;
    width: 300px;
    height: auto;
    pointer-events: none;
}

.page-about__title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-about__section--mission {
    background-color: #ffffff;
}

.page-about__section--values {
    background-color: #e9ecef;
}

.page-about__section--team {
    background-color: #ffffff;
}

.page-about__section--cta {
    background: linear-gradient(45deg, #0056b3, #1c7530);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-about__heading {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
}

.page-about__heading--white {
    color: #ffffff;
}

.page-about__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

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

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

.page-about__text-content p strong {
    color: #007bff;
}

.page-about__image-wrapper {
    flex: 1;
    text-align: center;
}

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

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

.page-about__value-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    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.6em;
    color: #007bff;
    margin-bottom: 15px;
}

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

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

.page-about__btn--primary {
    background-color: #28a745;
    color: #ffffff;
    border: 2px solid #28a745;
}

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

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

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

.page-about__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-about__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-about__cta-text strong {
    color: #ffeb3b; /* A brighter yellow for emphasis on dark background */
}

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

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

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

.page-about__btn--white-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-about__btn--white-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__title {
        font-size: 2.8em;
    }
    .page-about__subtitle {
        font-size: 1.3em;
    }
    .page-about__heading {
        font-size: 2em;
    }
    .page-about__content-grid {
        flex-direction: column;
        text-align: center;
    }
    .page-about__content-grid--reverse {
        flex-direction: column;
    }
    .page-about__text-content, .page-about__image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-about__image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 60px 0;
    }
    .page-about__title {
        font-size: 2.2em;
    }
    .page-about__subtitle {
        font-size: 1.1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-about__title {
        font-size: 1.8em;
    }
    .page-about__subtitle {
        font-size: 0.9em;
    }
    .page-about__btn {
        width: 100%;
        box-sizing: border-box;
    }
    .page-about__hero-image {
        width: 200px;
    }
}