.page-index-about-us {
    color: #333333; /* Dark text for light body background */
}

.page-index-about-us__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px; /* Minimum height for hero section */
}

.page-index-about-us__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-index-about-us__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text readability */
    border-radius: 10px;
    color: #ffffff;
}

.page-index-about-us__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-index-about-us__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-index-about-us__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-index-about-us__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-index-about-us__btn--primary {
    background-color: #007bff; /* Primary brand color */
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-index-about-us__btn--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-index-about-us__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #28a745; /* Secondary brand color */
}

.page-index-about-us__btn--secondary:hover {
    background-color: #28a745;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-index-about-us__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-index-about-us__section-title {
    font-size: 2.8em;
    color: #007bff; /* Primary brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-about-us__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #28a745; /* Secondary brand color */
    border-radius: 2px;
}

.page-index-about-us__paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-about-us__story-section, .page-index-about-us__values-section, .page-index-about-us__why-choose-us-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.page-index-about-us__story-section:nth-of-type(odd) {
    background-color: #f0f3f2; /* Slightly darker background for alternating sections */
}

.page-index-about-us__image-text-group {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-index-about-us__story-image {
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 800px; /* Explicit width for HTML attribute */
    height: 600px; /* Explicit height for HTML attribute */
    object-fit: cover;
}

.page-index-about-us__text-content {
    flex: 1;
}

.page-index-about-us__sub-title {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 20px;
}

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

.page-index-about-us__value-card, .page-index-about-us__feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-about-us__value-card:hover, .page-index-about-us__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-about-us__card-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-index-about-us__card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

.page-index-about-us__values-image, .page-index-about-us__choose-image {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-about-us__cta-section {
    background-color: #007bff; /* Primary brand color for CTA background */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-about-us__cta-content {
    position: relative;
    z-index: 2;
}

.page-index-about-us__cta-section .page-index-about-us__section-title {
    color: #ffffff;
}

.page-index-about-us__cta-section .page-index-about-us__section-title::after {
    background-color: #28a745;
}

.page-index-about-us__cta-section .page-index-about-us__paragraph {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-index-about-us__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-index-about-us__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-about-us__hero-title {
        font-size: 2.8em;
    }
    .page-index-about-us__hero-description {
        font-size: 1.1em;
    }
    .page-index-about-us__section-title {
        font-size: 2.2em;
    }
    .page-index-about-us__image-text-group {
        flex-direction: column;
        text-align: center;
    }
    .page-index-about-us__story-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-index-about-us__hero-section {
        min-height: 450px;
        padding: 40px 15px;
    }
    .page-index-about-us__hero-content {
        padding: 25px;
    }
    .page-index-about-us__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-index-about-us__hero-description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
    .page-index-about-us__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-about-us__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-about-us__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-about-us__paragraph {
        font-size: 1em;
    }
    .page-index-about-us__sub-title {
        font-size: 1.6em;
    }
    .page-index-about-us__values-grid, .page-index-about-us__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index-about-us__value-card, .page-index-about-us__feature-card {
        padding: 25px;
    }
    .page-index-about-us__card-title {
        font-size: 1.3em;
    }
    .page-index-about-us__cta-section {
        padding: 60px 15px;
    }
    /* Ensure all content area images are responsive and don't overflow */
    .page-index-about-us img {
        max-width: 100%;
        height: auto;
    }
    /* Specific rule to ensure content images are not small */
    .page-index-about-us__story-image, 
    .page-index-about-us__values-image, 
    .page-index-about-us__choose-image, 
    .page-index-about-us__cta-image {
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px; /* Enforce minimum size for content images */
    }
}

@media (max-width: 480px) {
    .page-index-about-us__hero-title {
        font-size: 1.7em;
    }
    .page-index-about-us__hero-description {
        font-size: 0.9em;
    }
    .page-index-about-us__section-title {
        font-size: 1.5em;
    }
    .page-index-about-us__btn {
        width: 100%;
    }
    .page-index-about-us__content-wrapper {
        padding: 20px 15px;
    }
}