/* style/about.css */

/* General Page Styles */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    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__title,
.page-about__section-title {
    color: #007BFF; /* Main color */
    margin-bottom: 30px;
    font-weight: bold;
}

.page-about__title {
    font-size: 3.2em;
    margin-bottom: 15px;
}

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

.page-about__highlight {
    color: #FFD700; /* Accent color */
}

.page-about__bold {
    font-weight: bold;
}

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero .page-about__container {
    z-index: 1;
}

.page-about__hero-image-wrapper {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 300px;
    height: 300px;
    opacity: 0.2;
    transform: rotate(15deg);
    z-index: 0;
}

.page-about__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-about__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color */
    color: #007BFF; /* Main color for text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #FFD700;
}

.page-about__cta-button:hover {
    background-color: #e6c200;
    color: #0056b3;
    border-color: #e6c200;
}

/* Mission & Vision Section */
.page-about__mission-vision .page-about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease;
    border-top: 5px solid #007BFF;
}

.page-about__card:hover {
    transform: translateY(-5px);
}

.page-about__card-title {
    color: #007BFF; /* Main color */
    font-size: 1.8em;
    margin-bottom: 15px;
}

/* Values Section */
.page-about__values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.page-about__value-item {
    flex: 0 0 calc(33% - 40px);
    max-width: 300px;
    text-align: center;
}

.page-about__value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-about__value-title {
    color: #007BFF; /* Main color */
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Team Section */
.page-about__team-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #666;
}

.page-about__team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.page-about__member-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    flex: 0 0 calc(33% - 30px);
    max-width: 280px;
}

.page-about__member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #FFD700;
}

.page-about__member-name {
    font-size: 1.4em;
    color: #007BFF; /* Main color */
    margin-bottom: 5px;
}

.page-about__member-role {
    color: #777;
    font-size: 0.95em;
}

/* Why Choose Us Section */
.page-about__why-choose-us {
    background-color: #f8f9fa;
}

.page-about__advantages-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 800px;
    text-align: left;
}

.page-about__advantages-list li {
    background-color: #fff;
    border-left: 5px solid #FFD700; /* Accent color */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
}

.page-about__advantages-list li:last-child {
    margin-bottom: 0;
}

.page-about__cta-bottom {
    margin-top: 60px;
    padding: 30px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__cta-bottom p {
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 300;
}

.page-about__cta-button--secondary {
    background-color: #FFD700;
    color: #007BFF;
    border-color: #FFD700;
}

.page-about__cta-button--secondary:hover {
    background-color: #e6c200;
    color: #0056b3;
    border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__title {
        font-size: 2.8em;
    }
    .page-about__subtitle {
        font-size: 1.2em;
    }
    .page-about__value-item {
        flex: 0 0 calc(50% - 40px);
    }
    .page-about__member-card {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__title {
        font-size: 2.2em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__grid {
        grid-template-columns: 1fr;
    }
    .page-about__value-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .page-about__team-members {
        flex-direction: column;
        align-items: center;
    }
    .page-about__member-card {
        flex: 0 0 80%;
        max-width: 350px;
    }
    .page-about__advantages-list li {
        font-size: 1em;
        padding: 15px;
    }
    .page-about__cta-bottom p {
        font-size: 1.2em;
    }
    .page-about__hero-image-wrapper {
        width: 200px;
        height: 200px;
        bottom: -10px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .page-about__title {
        font-size: 1.8em;
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__hero-image-wrapper {
        display: none;
    }
}