/* 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, #2C3E50 0%, #4a6c8a 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #F39C12; /* Accent color for title */
}

.page-about__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Mission & Vision Section */
.page-about__mission-vision {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-about__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .page-about__content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-about__card {
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__card-title {
    font-size: 2em;
    color: #2C3E50;
    margin-bottom: 15px;
}

.page-about__card p {
    font-size: 1.1em;
    color: #555;
}

.page-about__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Values Section */
.page-about__values {
    padding: 60px 0;
    background-color: #f0f2f5;
    text-align: center;
}

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

.page-about__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #F39C12;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

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

.page-about__value-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-8px);
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-about__value-item h3 {
    font-size: 1.5em;
    color: #2C3E50;
    margin-bottom: 10px;
}

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

/* CTA Section */
.page-about__cta-section {
    background-color: #2C3E50;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-about__cta-title {
    font-size: 2.5em;
    color: #F39C12;
    margin-bottom: 20px;
}

.page-about__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

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

.page-about__btn--primary {
    background-color: #F39C12;
    color: #2C3E50;
}

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

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

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

/* Team Section */
.page-about__team-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.page-about__team-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-about__team-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* General link styling within content */
.page-about__link {
    color: #F39C12;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-about__link:hover {
    color: #e08e0b;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__card-title {
        font-size: 1.5em;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-about__hero-section,
    .page-about__mission-vision,
    .page-about__values,
    .page-about__cta-section,
    .page-about__team-section {
        padding: 40px 0;
    }
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
}