/* style/about.css */

.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Explicitly setting for safety, though body is default white */
}

.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #26A9E0, #FFFFFF); /* Main brand color gradient */
    color: #FFFFFF; /* Light text for hero section */
    overflow: hidden;
    min-height: 450px;
}

.page-about__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-about__hero-title {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFFFFF;
}

.page-about__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-about__hero-button {
    display: inline-block;
    background-color: #EA7C07; /* Login/CTA orange */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__hero-button:hover {
    background-color: #d16b06;
}

.page-about__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-about__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

.page-about__content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-about__story-section,
.page-about__mission-vision-section,
.page-about__values-section,
.page-about__cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-about__story-section {
    background-color: #f9f9f9;
}

.page-about__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #26A9E0; /* Main brand color */
    font-weight: bold;
}

.page-about__section-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .page-about__mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.page-about__mission-card,
.page-about__vision-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

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

.page-about__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-about__card-title {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #26A9E0;
    font-weight: bold;
}

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

.page-about__values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

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

@media (min-width: 1024px) {
    .page-about__values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.page-about__value-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
}

.page-about__value-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #26A9E0;
    font-weight: bold;
}

.page-about__value-text {
    font-size: 0.95em;
    color: #666666;
}

.page-about__cta-section {
    background-color: #26A9E0; /* Main brand color */
    color: #FFFFFF;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-about__cta-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.page-about__cta-button {
    display: inline-block;
    background-color: #EA7C07; /* Login/CTA orange */
    color: #FFFFFF;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-about__cta-button:hover {
    background-color: #d16b06;
    transform: translateY(-2px);
}

.page-about__cta-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-about__cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
    .page-about__hero-section,
    .page-about__cta-section {
        padding: 60px 15px;
    }
    .page-about__content-container {
        padding: 20px 15px;
    }
}