/* Main Container */
.about-us-container {
    width: 100%;
    font-family: inherit; /* Inherits your website's main font */
    color: #333;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 36px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

/* Story Section */
.about-story {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

/* Little green underline for the heading */
.story-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background-color: #28a745; 
    border-radius: 2px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Values Section */
.about-values {
    background-color: #f8f9fa;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-box {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
}

.value-box i {
    font-size: 40px;
    color: #28a745; /* Matches your order buttons */
    margin-bottom: 15px;
}

.value-box h3 {
    font-size: 20px;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.value-box p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-story {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin: 40px auto;
    }

    /* Centers the green underline on mobile */
    .story-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-values {
        grid-template-columns: 1fr; /* Stacks the 3 value boxes on top of each other */
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
}