.about-page-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    text-transform: capitalize;
}

.text-center {
    text-align: center;
}

/* --- Hero Section --- */
.about-hero {
    position: relative;
    width: 100%;
    height: 350px;
    /* Placeholder for warehouse image */
    background-image: url('../images/about-us.webp'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
}

.about-hero__content {
    position: relative;
    z-index: 2;
}

.about-hero__title {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
}

/* --- Who We Are Section --- */
.about-intro {
    padding: 60px 0 40px;
}

.section-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
}

/* --- Mission & Vision Section --- */
.mv-section {
    padding: 40px 0 60px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mv-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.mv-card__box {
    padding: 30px;
    border-radius: 12px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-height: 120px;
    display: flex;
    align-items: center;
    
    /* The Gradient from the image (Pink/Purple) */
    background: linear-gradient(135deg, #f0939d 0%, #d88fa5 40%, #998ec4 100%);
}

/* Specific overrides if needed per card, currently identical gradients in image */
.mission-card .mv-card__box,
.vision-card .mv-card__box {
    /* Using dark text on gradient as per image? Or usually white looks better. 
       Image shows black text. */
    color: #1a1a1a; 
}

/* --- What We Offer Section --- */
.offer-section {
    padding: 60px 0 80px;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.offer-item {
    background: #fff;
    border: 1px solid #e0e0e0; /* Light border like image */
    border-radius: 15px; /* Rounded pill/card shape */
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.offer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f06a77 0%, #7e5c96 100%); /* Matching gradient circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.offer-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

/* Fix for About Page Mobile Header Overlap */
@media (max-width: 768px) {
    /* 1. Push the hero section down to clear the taller mobile header */
    

    /* 2. (Optional) Prevent the text from being too close to the top if image is small */
    .about-hero__content {
        padding-top: 1rem; 
    }
}