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

/* Hero Section */
.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding, larger bottom */
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width of hero image */
    margin-bottom: 30px; /* Space between image and content */
}

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

.page-about__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.page-about__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-about__cta-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* General Section Styling */
.page-about__section {
    padding: 60px 20px;
    border-top: 1px solid #1E3A2A; /* Divider */
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Inner padding for container */
    box-sizing: border-box;
}

.page-about__section-title {
    color: #F2FFF6; /* Text Main */
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #57E38D; /* Glow */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-about__sub-title {
    color: #2AD16F; /* Lighter green from button gradient */
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-about__text-block p {
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.page-about__text-block strong {
    color: #57E38D; /* Glow */
}

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

.page-about__list li {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-about__list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #2AD16F; /* Lighter green */
    font-size: 1.2em;
    line-height: 1;
}

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

/* FAQ Section */
.page-about__faq-list {
    margin-top: 30px;
}

.page-about__faq-item {
    background-color: #11271B; /* Card BG */
    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: 18px 25px;
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    font-size: 1.15rem;
    transition: background-color 0.3s ease;
    list-style: none; /* For <summary> */
}

.page-about__faq-question:hover {
    background-color: #1a3528; /* Slightly lighter on hover */
}

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

.page-about__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #57E38D; /* Glow */
    margin-left: 15px;
}

/* Hide default marker for details */
.page-about__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-about__faq-item summary::marker {
    display: none;
}

.page-about__faq-answer {
    padding: 0 25px 20px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1rem;
    line-height: 1.7;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

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

/* Social Links */
.page-about__social-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-about__social-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2E7A4E; /* Border color for social buttons */
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-about__social-link:hover {
    background-color: #13994A; /* Darker green */
}

.page-about a {
    color: #2AD16F; /* Lighter green for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about a:hover {
    color: #57E38D; /* Glow on hover */
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 10px 15px 40px;
    }

    .page-about__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-about__hero-description {
        font-size: 1rem;
    }

    .page-about__cta-button,
    .page-about a[class*="button"],
    .page-about a[class*="btn"],
    .page-about__social-link {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-about__section {
        padding: 40px 15px;
    }

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

    .page-about__sub-title {
        font-size: 1.5rem;
    }

    .page-about p,
    .page-about li,
    .page-about__faq-answer {
        font-size: 0.95rem;
    }

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

    /* Mobile image responsiveness */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-about__container,
    .page-about__hero-image-wrapper,
    .page-about__faq-item,
    .page-about__social-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }

    .page-about__social-list {
        flex-direction: column;
        gap: 10px;
    }

    .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;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-about__cta-buttons {
        display: flex;
        flex-direction: column;
    }

    .page-about__video-section {
        padding-top: 10px !important;
    }
}