.page-about {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-about__hero-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-about__hero-content {
    max-width: 800px;
}

.page-about__hero-title {
    font-size: 2.8em;
    color: #8B0000; /* Deep red for prominent title */
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-about__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold primary button */
    color: #8B0000; /* Deep red text for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-about__hero-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-about__hero-image {
    width: 100%;
    max-width: 1200px;
}

.page-about__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-about__mission-vision-section {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-about__mission-vision-section .page-about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.page-about__card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-about__card-title {
    font-size: 1.8em;
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__card-text {
    font-size: 1.1em;
    color: #666666;
}

.page-about__history-section {
    background-color: #f2f2f2;
    padding: 80px 0;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-about__history-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.page-about__history-text {
    flex: 1;
    font-size: 1.1em;
    color: #444444;
}

.page-about__history-text p {
    margin-bottom: 20px;
}

.page-about__history-image {
    flex: 1;
    min-width: 200px; /* Ensure image is not too small */
}

.page-about__history-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-about__button {
    display: inline-block;
    background-color: #8B0000; /* Deep red button */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-about__button:hover {
    background-color: #6a0000;
}

.page-about__values-section {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.page-about__value-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.page-about__value-item img {
    width: 100%; /* Ensure image fills its container */
    max-width: 250px; /* Keep a reasonable size */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-about__value-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for value titles */
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-about__cta-section {
    background-color: #8B0000; /* Deep red background for CTA */
    padding: 70px 20px;
    text-align: center;
    color: #ffffff;
}

.page-about__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-about__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.page-about__cta-button--primary {
    background-color: #FFD700; /* Gold button */
    color: #8B0000;
    border-color: #FFD700;
}

.page-about__cta-button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-about__cta-button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on deep red background */
    border-color: #FFD700;
}

.page-about__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__hero-section {
        flex-direction: column;
        padding: 50px 15px;
        gap: 30px;
    }

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

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

    .page-about__mission-vision-section .page-about__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .page-about__history-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-about__history-image {
        min-width: unset; /* Allow it to shrink on mobile */
    }

    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    
    .page-about__value-item img {
        max-width: 200px; /* Adjust max-width for smaller screens */
        min-width: 200px; /* Maintain minimum size */
        height: auto; /* Ensure aspect ratio */
    }

    .page-about__cta-title {
        font-size: 2em;
    }

    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Enforce mobile image size constraint */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images are never smaller than 200px */
.page-about img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensure images fill their space without distortion */
}