/* 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__grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .page-about__grid {
        flex-direction: column;
        text-align: center;
    }
    .page-about__grid--reverse {
        flex-direction: column-reverse;
    }
}

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

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

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

.page-about__hero {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-about__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-about__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #eee;
}

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

.page-about__btn--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #007bff; /* Main color for text for contrast */
    border: 2px solid #ffc107;
}

.page-about__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-about__btn--secondary {
    background-color: #007bff; /* Main color */
    color: #fff;
    border: 2px solid #007bff;
}

.page-about__btn--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

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

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

.page-about__section--values {
    background-color: #f1f7fe; /* Lighter variant of main color */
}

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

.page-about__section--commitment {
    background-color: #007bff; /* Main color */
    color: #fff;
}

.page-about__heading {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #007bff; /* Main color */
    font-weight: bold;
}

.page-about__section--commitment .page-about__heading {
    color: #ffc107; /* Auxiliary color for contrast */
}

.page-about__heading--center {
    text-align: center;
}

.page-about__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.page-about__section--commitment .page-about__text {
    color: #e0e0e0;
}

.page-about__text--center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-about__value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #007bff;
}

.page-about__card-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-about__card-text {
    font-size: 1em;
    color: #666;
}

.page-about__commitment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    color: #fff;
}

.page-about__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.page-about__feature-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-about__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #ffc107;
}

.page-about__feature-title {
    font-size: 1.4em;
    color: #ffc107;
    margin-bottom: 15px;
}

.page-about__feature-text {
    font-size: 1em;
    color: #e0e0e0;
}

.page-about__cta {
    margin-top: 60px;
    text-align: center;
}

.page-about__cta--bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .page-about__title {
        font-size: 2.8em;
    }
    .page-about__subtitle {
        font-size: 1.2em;
    }
    .page-about__heading {
        font-size: 2em;
    }
    .page-about__section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .page-about__title {
        font-size: 2.2em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__heading {
        font-size: 1.8em;
    }
    .page-about__btn {
        padding: 12px 25px;
    }
    .page-about__values-grid, .page-about__commitment-features {
        grid-template-columns: 1fr;
    }
}