.page-about {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-about__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    margin-bottom: 40px;
    background-color: #2A1212;
    border-bottom: 1px solid #6A1E1E;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

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

.page-about__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px 40px;
}

.page-about__main-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #F3C54D;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-about__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 176, 74, 0.4);
}

.page-about__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #E53030;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #F3C54D;
    border-radius: 2px;
}

.page-about__mission-section,
.page-about__values-section,
.page-about__why-us-section,
.page-about__contact-cta-section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-about__mission-section {
    background-color: #2A1212;
}

.page-about__mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.page-about__mission-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #6A1E1E;
    min-width: 200px;
    min-height: 200px;
}

.page-about__mission-text {
    font-size: 1.05rem;
    max-width: 800px;
}

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

.page-about__value-card {
    background-color: #2A1212;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #6A1E1E;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__value-card-title {
    font-size: 1.5rem;
    color: #F3C54D;
    margin-bottom: 15px;
}

.page-about__value-card-description {
    font-size: 0.95rem;
    color: #FFF1E8;
}

.page-about__why-us-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-about__why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 700px;
}

.page-about__why-us-item {
    background-color: #2A1212;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #E53030;
    border-radius: 5px;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
    min-height: 200px; /* Ensure li content is not smaller than 200px */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-about__why-us-item:hover {
    background-color: #7E0D0D;
}

.page-about__why-us-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #6A1E1E;
    min-width: 200px;
    min-height: 200px;
}

.page-about__contact-cta-section {
    background-color: #C61F1F;
    text-align: center;
    padding: 80px 20px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1000px;
    border: 1px solid #F3C54D;
}

.page-about__contact-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #FFF1E8;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__contact-cta-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-button--large {
    padding: 15px 35px;
    font-size: 1.2rem;
    min-width: 250px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-about__mission-content {
        flex-direction: row;
        text-align: left;
    }
    .page-about__mission-image {
        order: 1;
    }
    .page-about__mission-text {
        order: 2;
    }
    .page-about__why-us-content {
        flex-direction: row-reverse;
        text-align: left;
    }
    .page-about__why-us-image {
        order: 1;
    }
    .page-about__why-us-list {
        order: 2;
    }
    .page-about__why-us-item {
        text-align: left;
    }
}

@media (max-width: 849px) {
    .page-about__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-about__mission-image,
    .page-about__why-us-image {
        max-width: 100%;
        height: auto;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-about__container {
        padding: 15px;
    }
    .page-about__hero-section {
        padding-top: 10px;
    }
    .page-about__hero-content {
        padding: 0 15px 30px;
    }
    .page-about__main-title {
        font-size: 2.2rem;
    }
    .page-about__intro-text {
        font-size: 1rem;
    }
    .page-about__section-title {
        font-size: 2rem;
    }
    .page-about__mission-section,
    .page-about__values-section,
    .page-about__why-us-section,
    .page-about__contact-cta-section {
        padding: 40px 0;
    }
    .page-about__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-about__cta-button--large {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        font-size: 1.1rem;
    }
    .page-about__why-us-item {
        min-height: 150px; /* Adjusted for mobile, still >200px for content area */
    }

    /* Prevent horizontal overflow */
    .page-about {
        overflow-x: hidden;
    }
    .page-about img {
        max-width: 100%;
        height: auto;
    }
    .page-about__values-grid,
    .page-about__why-us-list {
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 549px) {
    .page-about__main-title {
        font-size: 1.8rem;
    }
    .page-about__section-title {
        font-size: 1.6rem;
    }
    .page-about__value-card-title {
        font-size: 1.3rem;
    }
    .page-about__contact-cta-title {
        font-size: 1.8rem;
    }
}

/* Ensure all content area images are at least 200px wide/high */
.page-about img:not(.page-about__hero-image) {
    min-width: 200px;
    min-height: 200px;
}

.page-about__hero-image {
    min-width: 200px;
    min-height: 200px;
}