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

.page-about__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding as per instruction */
    background-color: #140C0C;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

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

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

.page-about__main-title {
    font-size: clamp(2.2em, 4vw, 3.2em);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F3C54D; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-about__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

.page-about__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #F3C54D; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__story-section {
    background-color: #140C0C;
    padding: 60px 0;
}

.page-about__story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-about__story-text p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #FFF1E8;
}

.page-about__story-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-about__why-choose-us-section {
    background-color: #140C0C;
    padding: 60px 0;
}

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

.page-about__feature-card {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

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

.page-about__feature-icon {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-about__feature-title {
    font-size: 1.6em;
    font-weight: bold;
    color: #F3C54D; /* Gold for feature titles */
    margin-bottom: 15px;
}

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

.page-about__values-section {
    background-color: #140C0C;
    padding: 60px 0;
}

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

.page-about__value-item {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__value-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 50%;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

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

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

.page-about__cta-section {
    background-color: #140C0C;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #6A1E1E; /* Border */
}

.page-about__cta-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #F3C54D; /* Gold for CTA title */
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-about__cta-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF1E8;
}

.page-about__cta-button--large {
    padding: 15px 40px;
    font-size: 1.2em;
}

.page-about__feature-card a, .page-about__value-item a {
    color: #F3C54D; /* Gold for links within cards */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.page-about__feature-card a:hover, .page-about__value-item a:hover {
    color: #FFB04A;
}

/* Ensure color contrast for links */
.page-about__feature-card p a, .page-about__value-item p a {
    color: #FFB04A; /* Brighter gold for better contrast on dark background */
}

.page-about__feature-card p a:hover, .page-about__value-item p a:hover {
    color: #F3C54D;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .page-about__story-grid {
        grid-template-columns: 1fr;
    }

    .page-about__story-image {
        order: -1; /* Image appears above text on smaller screens */
        margin-bottom: 30px;
    }

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

    .page-about__main-title {
        font-size: clamp(2em, 5vw, 2.8em);
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        min-height: 400px;
    }

    .page-about__hero-content {
        padding: 15px;
    }

    .page-about__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-about__description {
        font-size: 1em;
    }

    .page-about__cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }

    .page-about__container {
        padding: 30px 15px;
    }

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

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

    .page-about__feature-card,
    .page-about__value-item {
        padding: 25px;
    }

    .page-about__feature-title,
    .page-about__value-title {
        font-size: 1.4em;
    }

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

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

    .page-about__cta-button--large {
        padding: 12px 30px;
        font-size: 1.1em;
    }

    /* Critical: Mobile content image overflow prevention */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-about__hero-image {
        height: 300px; /* Adjust hero image height for very small screens */
    }
}