:root {
    --primary-color: #C91F17;
    --secondary-color: #E53935;
    --text-main-color: #FFF5E1;
    --card-bg: #D32F2F;
    --site-bg: #B71C1C;
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red-color: #7A0E0E;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
}

.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default for light background, will be overridden by section-specific bg/color */
    background-color: var(--site-bg-color, #f8f9fa); /* Fallback if --site-bg-color is not set */
    direction: ltr;
}

.page-about__light-bg {
    background-color: #ffffff; /* Explicit light background for this section */
    color: #333333; /* Dark text for light background */
}

.page-about__dark-bg {
    background-color: var(--site-bg); /* Explicit dark background for this section */
    color: var(--text-main-color); /* Light text for dark background */
}

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

.page-about__section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    padding-top: 20px;
}

.page-about__section-title--light {
    color: var(--text-main-color);
}

.page-about__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: inherit; /* Inherit from parent section's color */
}

.page-about__text-block--light {
    color: var(--text-main-color);
}

/* HERO Section */
.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--site-bg); /* Use a dark background for the hero section */
}

.page-about__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width for flex item */
}

.page-about__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-about__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-about__hero-content h1 {
    font-size: clamp(32px, 5vw, 56px); /* Clamp for responsive H1 */
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.page-about__hero-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-main-color);
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #333333; /* Ensure dark text on gold button for contrast */
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-about__cta-button:hover {
    background: linear-gradient(180deg, #FFE082 0%, #FFC107 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-about__intro-section {
    padding: 60px 0;
    text-align: center;
}

.page-about__intro-section .page-about__image {
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
    padding: 80px 0;
}

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

.page-about__feature-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main-color);
    border: 1px solid var(--border-color);
}

.page-about__feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-about__feature-icon {
    width: 100%;
    height: auto;
    max-width: 150px; /* Adjust max-width for feature icons */
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.page-about__feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-about__feature-description {
    font-size: 16px;
    color: var(--text-main-color);
}

/* Mission Vision Section */
.page-about__mission-vision-section {
    padding: 60px 0;
    text-align: center;
}

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

.page-about__mv-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333333;
    border: 1px solid #e0e0e0;
}

.page-about__mv-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.page-about__values-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.page-about__values-list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: var(--gold-color);
}

.page-about__mission-vision-section .page-about__image {
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
.page-about__faq-section {
    padding: 60px 0;
    text-align: center;
}

details.page-about__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    color: var(--text-main-color);
    text-align: left;
}
details.page-about__faq-item summary.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--gold-color);
    font-size: 18px;
    font-weight: 700;
}
details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
    display: none;
}
details.page-about__faq-item summary.page-about__faq-question:hover {
    background: var(--deep-red-color);
}
.page-about__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    color: var(--gold-color);
}
.page-about__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-about__faq-item .page-about__faq-answer {
    padding: 0 20px 20px;
    background: rgba(0, 0, 0, 0.1); /* Slightly darker background for answer */
    border-radius: 0 0 8px 8px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main-color);
}
details.page-about__faq-item .page-about__faq-answer p {
    margin-bottom: 0;
}

/* Final CTA Section */
.page-about__final-cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--site-bg);
}

.page-about__final-cta-content {
    max-width: 900px;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-about__btn-primary {
    background: var(--button-gradient);
    color: #333333;
    border: none;
}

.page-about__btn-primary:hover {
    background: linear-gradient(180deg, #FFE082 0%, #FFC107 100%);
}

.page-about__btn-secondary {
    background: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    transition: all 0.3s ease;
}

.page-about__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--deep-red-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General image and button container responsiveness */
.page-about__image-container,
.page-about__button-group,
.page-about__cta-buttons {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Ensure all links styled as buttons also adhere to mobile responsiveness */
.page-about a[class*="button"],
.page-about a[class*="btn"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-about__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-about__hero-content h1 {
        font-size: clamp(28px, 8vw, 42px);
    }

    .page-about__hero-description {
        font-size: 15px;
    }

    .page-about__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-about__section-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 30px;
    }

    .page-about__intro-section,
    .page-about__why-choose-us-section,
    .page-about__mission-vision-section,
    .page-about__faq-section,
    .page-about__final-cta-section {
        padding: 40px 0;
    }

    .page-about__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    .page-about__feature-item {
        padding: 25px;
    }

    .page-about__feature-title {
        font-size: 20px;
    }

    .page-about__mv-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-about__mv-item {
        padding: 25px;
    }

    .page-about__mv-title {
        font-size: 22px;
    }

    details.page-about__faq-item summary.page-about__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-about__faq-qtext {
        font-size: 16px;
        width: calc(100% - 40px);
    }
    .page-about__faq-toggle {
        font-size: 20px;
        margin-left: 10px;
        width: 24px;
        height: 24px;
    }
    details.page-about__faq-item .page-about__faq-answer {
        padding: 0 15px 15px;
        font-size: 15px;
    }

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

    .page-about__cta-buttons .page-about__cta-button {
        width: 100%;
    }

    /* Enforce image responsiveness */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}