.page-about {
    color: #333333; /* Dark text for default light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop and mobile */
}

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

/* Hero Section */
.page-about__hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff; /* Light text on potentially dark/rich image background */
    text-align: center;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-about__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    padding: 30px;
    border-radius: 10px;
}

.page-about__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-about__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Dark red text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-about__hero-button:hover {
    background-color: #8B0000; /* Dark red on hover */
    color: #FFD700; /* Gold text on hover */
}

/* Story Section */
.page-about__story-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-about__story-title {
    font-size: 2.5em;
    color: #8B0000; /* Dark red for section titles */
    text-align: center;
    margin-bottom: 40px;
}

.page-about__story-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-about__story-paragraph {
    flex: 1;
    min-width: 300px;
    font-size: 1.1em;
    color: #333333;
}

.page-about__story-image {
    flex: 1;
    min-width: 400px; /* Ensure minimum size for content images */
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 200px; /* Enforce minimum size */
}

/* Mission and Values Section */
.page-about__mission-values-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-about__mission-values-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 40px;
}

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

.page-about__value-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-about__value-card:hover {
    transform: translateY(-5px);
}

.page-about__value-icon {
    width: 200px; /* Enforce minimum 200x200 */
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* Ensure no filter changes image color */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-about__value-heading {
    font-size: 1.8em;
    color: #FFD700; /* Gold for card headings */
    margin-bottom: 15px;
}

.page-about__value-description {
    font-size: 1em;
    color: #555555;
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.page-about__why-choose-us-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 40px;
}

.page-about__why-choose-us-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-about__why-choose-us-list {
    flex: 1;
    min-width: 300px;
    list-style: none;
    padding: 0;
}

.page-about__why-choose-us-item {
    font-size: 1.1em;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #333333;
}

.page-about__why-choose-us-item::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
}

.page-about__why-choose-us-image {
    flex: 1;
    min-width: 400px; /* Ensure minimum size for content images */
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 200px; /* Enforce minimum size */
}

.page-about__cta-wrapper {
    text-align: center;
    padding: 40px 0;
    background-color: #8B0000; /* Dark red background for CTA */
    border-radius: 10px;
    color: #ffffff;
}

.page-about__cta-text {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold text for CTA question */
}

.page-about__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Dark red text */
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 250px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-about__cta-button:hover {
    background-color: #f0f0f0;
    color: #8B0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 60px 20px;
        min-height: 400px;
    }

    .page-about__hero-title {
        font-size: 2.2em;
    }

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

    .page-about__story-content,
    .page-about__why-choose-us-content {
        flex-direction: column;
    }

    .page-about__story-image,
    .page-about__why-choose-us-image {
        min-width: 200px;
        width: 100%;
    }

    .page-about__story-paragraph,
    .page-about__why-choose-us-list {
        min-width: unset;
    }

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

    .page-about__value-card .page-about__value-icon {
        width: 200px;
        height: 200px;
    }

    .page-about__cta-text {
        font-size: 1.4em;
    }

    .page-about__cta-button {
        font-size: 1.1em;
        padding: 15px 30px;
        min-width: 200px;
    }
}