.page-about {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light background */
    line-height: 1.6;
    background-color: #FFFFFF;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Enforce image on top, text below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 40px 0; /* Small top padding, more bottom padding */
    background-color: #26A9E0; /* Brand primary color for dark section */
    color: #ffffff;
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover; /* Default cover, will be 'contain' for mobile */
}

.page-about__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-about__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.page-about__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* General Section Styles */
.page-about__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #26A9E0;
}

.page-about__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-about__content-grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

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

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

.page-about__image-block {
    flex: 1;
    min-width: 200px; /* Minimum size for content images */
}

.page-about__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-about__value-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-about__value-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-about__value-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #26A9E0;
}

/* Why Choose Us Section */
.page-about__why-choose-us {
    padding: 80px 0;
    background-color: #26A9E0;
    color: #ffffff;
}

.page-about__why-choose-us .page-about__section-title {
    color: #ffffff;
}

.page-about__why-choose-us .page-about__sub-title {
    color: #ffffff;
}

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

.page-about__feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    min-height: 350px; /* Ensure cards have a reasonable height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-about__feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: none; /* Ensure no CSS filter changes icon color */
    min-width: 200px; /* Enforce min image size for icons */
    min-height: 200px;
}

.page-about__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Commitment Section */
.page-about__commitment-section {
    padding: 80px 0;
}

/* Vision Section */
.page-about__vision-section {
    padding: 80px 0;
    background-color: #26A9E0;
    color: #ffffff;
}

.page-about__vision-section .page-about__section-title {
    color: #ffffff;
}

.page-about__vision-section .page-about__sub-title {
    color: #ffffff;
}

.page-about__vision-section .page-about__feature-card {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-about__vision-section .page-about__card-title {
    color: #ffffff;
}

/* Contact Section */
.page-about__contact-section {
    padding: 80px 0;
    text-align: center;
}

.page-about__contact-info {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.page-about__contact-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.page-about__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-about__contact-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.page-about__contact-list li strong {
    color: #26A9E0;
}

.page-about__contact-list li a {
    color: #EA7C07; /* Login color for contact links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about__contact-list li a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-about__faq-section {
    padding: 80px 0;
}

.page-about__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-about__faq-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    list-style: none; /* For details/summary */
}

.page-about__faq-question::-webkit-details-marker {
    display: none;
}

.page-about__faq-qtext {
    flex: 1;
}

.page-about__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #26A9E0;
    margin-left: 15px;
    pointer-events: none; /* Prevent summary click from being blocked by span */
}

.page-about__faq-item[open] .page-about__faq-toggle {
    content: '−';
}

.page-about__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: #555555;
    background-color: #f9f9f9;
}

/* Buttons */
.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

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

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

.page-about__btn-secondary:hover {
    background: #26A9E0;
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-about__container {
        padding: 20px 30px;
    }

    .page-about__content-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .page-about__text-block, .page-about__image-block {
        width: 100%;
    }

    .page-about__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-about__hero-image {
        object-fit: contain !important; /* Ensure image is fully visible */
        aspect-ratio: unset !important;
        max-height: none !important;
    }

    .page-about__main-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .page-about__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-about__section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .page-about__sub-title {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-about__content-grid {
        margin-bottom: 40px;
    }

    .page-about__content-image {
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-about__feature-card {
        padding: 25px;
        min-height: unset;
    }

    .page-about__feature-icon {
        width: 80px;
        height: 80px;
        min-width: 200px !important; /* Enforce min image size for icons on mobile too */
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-about__card-title {
        font-size: 1.2rem;
    }

    .page-about__features-grid {
        grid-template-columns: 1fr;
    }

    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-about__btn-primary,
    .page-about__btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-about__contact-info {
        padding: 30px 20px;
    }

    .page-about__contact-list li,
    .page-about__contact-text {
        font-size: 1rem;
    }

    .page-about__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-about__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.95rem;
    }

    /* General image and container rules for mobile */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-about__section,
    .page-about__card,
    .page-about__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Ensure no CSS filter changes icon color */
.page-about__feature-icon, .page-about__content-image, .page-about__hero-image {
    filter: none;
}