/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

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

.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #08160F; /* Background */
    text-align: center;
}

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

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.page-about__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-about__description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-about__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-about__btn-primary,
.page-about__btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-about__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
}

.page-about__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(42, 209, 111, 0.3);
}

.page-about__btn-secondary {
    background: #11271B; /* Card BG */
    color: #2AD16F;
    border: 2px solid #2E7A4E; /* Border */
}

.page-about__btn-secondary:hover {
    transform: translateY(-3px);
    background: #2E7A4E; /* Border */
    color: #F2FFF6; /* Text Main */
}

.page-about__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

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

.page-about__intro-text {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__dark-section {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    padding: 80px 0;
}

.page-about__light-bg {
    background-color: #11271B; /* Card BG, slightly lighter for contrast */
    color: #F2FFF6; /* Text Main */
    padding: 80px 0;
}

.page-about__content-grid,
.page-about__commitment-grid,
.page-about__vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.page-about__content-grid .page-about__image-block:first-child,
.page-about__vision-grid .page-about__image-block:first-child {
    order: 2;
}

.page-about__content-grid .page-about__text-block:first-child,
.page-about__vision-grid .page-about__text-block:first-child {
    order: 1;
}

.page-about__image-block {
    text-align: center;
}

.page-about__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-about__values-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-about__values-list li {
    background-color: rgba(46, 122, 78, 0.2); /* Deep Green transparent */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #2AD16F;
    border-radius: 4px;
    font-size: 1.05rem;
}

.page-about__values-list li strong {
    color: #F2FFF6; /* Text Main */
}

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

.page-about__card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 450px; /* Ensure cards have minimum height */
    box-sizing: border-box;
}

.page-about__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(42, 209, 111, 0.2);
}

.page-about__card-image {
    width: 100%;
    max-width: 300px; /* Example max-width for card images */
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-about__card-title {
    font-size: 1.4rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__card p {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1rem;
    flex-grow: 1;
}

.page-about__highlight {
    color: #57E38D; /* Glow */
    font-weight: bold;
}

.page-about__faq-section {
    padding: 80px 0;
    background-color: #11271B; /* Card BG */
}

.page-about__faq-list {
    margin-top: 40px;
}

.page-about__faq-item {
    background-color: #08160F; /* Background */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    background-color: #0A4B2C; /* Deep Green */
    transition: background-color 0.3s ease;
    list-style: none; /* For details summary */
}

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

.page-about__faq-question:hover {
    background-color: #13994A; /* Slightly lighter green */
}

.page-about__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to become cross */
}

.page-about__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #1E3A2A; /* Divider */
}

.page-about__faq-answer p {
    margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-about__content-grid,
    .page-about__commitment-grid,
    .page-about__vision-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .page-about__content-grid .page-about__image-block:first-child,
    .page-about__vision-grid .page-about__image-block:first-child {
        order: initial;
    }
    .page-about__content-grid .page-about__text-block:first-child,
    .page-about__vision-grid .page-about__text-block:first-child {
        order: initial;
    }
    .page-about__image-block {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-about__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-about__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .page-about__description {
        font-size: 1rem;
    }
    .page-about__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        padding-top: 20px;
    }
    .page-about__sub-title {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__btn-primary,
    .page-about__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        white-space: normal !important;
        word-wrap: break-word !important;
        font-size: 1rem;
    }
    .page-about__container {
        padding: 15px;
    }
    .page-about__dark-section,
    .page-about__light-bg {
        padding: 40px 0;
    }
    .page-about__feature-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-about__card {
        padding: 20px;
        min-height: auto;
    }
    .page-about__card-image {
        max-width: 100%;
        min-width: 200px;
        min-height: 200px;
    }
    .page-about__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-about__faq-answer {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    /* Mobile image responsiveness */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__section,
    .page-about__card,
    .page-about__container,
    .page-about__hero-image-wrapper,
    .page-about__image-block,
    .page-about__cta-buttons,
    .page-about__button-group,
    .page-about__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-about__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
    }
}