.page-about__hero-section {
    position: relative;
    background-color: #140C0C;
    padding-top: 10px; /* Small padding to avoid header overlap, body handles main offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

.page-about__main-title {
    color: #FFF1E8;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* No fixed font-size, relying on responsive design or clamp if needed */
}

.page-about__intro-text {
    color: #FFF1E8;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-about__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
    border: none;
    cursor: pointer;
}

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

.page-about__mission-section,
.page-about__values-section,
.page-about__team-section {
    background-color: #140C0C;
    padding: 60px 0;
    text-align: center;
}

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

.page-about__section-title {
    color: #F3C54D;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFB04A 0%, #D86A14 100%);
    border-radius: 2px;
}

.page-about__description {
    color: #FFF1E8;
    font-size: 1.05em;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

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

.page-about__feature-card {
    background-color: #2A1212;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #6A1E1E;
}

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

.page-about__feature-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Ensure images are not too small */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    aspect-ratio: 3/2;
}

.page-about__feature-title {
    color: #F3C54D;
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-about__feature-text {
    color: #FFF1E8;
    font-size: 1em;
    line-height: 1.6;
}

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

.page-about__value-item {
    background-color: #2A1212;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #E53030;
    text-align: left;
}

.page-about__value-title {
    color: #F3C54D;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-about__value-description {
    color: #FFF1E8;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-about__main-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-about__main-title {
        font-size: 2.2em;
    }
    .page-about__intro-text {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__description {
        font-size: 0.95em;
    }
    .page-about__features-grid,
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__hero-image,
    .page-about__feature-image {
        max-width: 100%;
        height: auto; /* Prevent overflow on mobile */
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    /* Ensure all images within .page-about do not cause horizontal scroll */
    .page-about img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Maintain minimum size */
        min-height: 200px; /* Maintain minimum size */
    }
}

@media (max-width: 480px) {
    .page-about__hero-section {
        padding-bottom: 30px;
    }
    .page-about__main-title {
        font-size: 1.8em;
    }
    .page-about__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    .page-about__mission-section,
    .page-about__values-section,
    .page-about__team-section {
        padding: 40px 0;
    }
    .page-about__feature-card,
    .page-about__value-item {
        padding: 20px;
    }
    .page-about__feature-title {
        font-size: 1.4em;
    }
    .page-about__value-title {
        font-size: 1.3em;
    }
    .page-about__description {
        margin-bottom: 30px;
    }
}