#about-us {
    min-height: 100vh;
    background: transparent;
    position: relative;
}

.section-padding {
    padding-top: 160px;
    padding-bottom: 80px;
}

h2.section-heading {
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #16292F;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: #16292F;
}

#about-us .fade-in {
    background: #ffffff; /* Solid white background */
    padding: 20px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle box-shadow */
    color: #000000; /* All text inside is black */
}

.quote-block {
    border-left: 4px solid #fff; /* Black border */
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #000000; /* Black text */
}

.quote-block p {
    margin: 0;
    font-size: 1.1rem;
    color: #fff; /* Ensure quote text is black */
}

.parallax-section {
    position: relative;
    height: 60vh;
    background-image: url('/assets/images/parallax.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay-text {
    background: #A9A08D;
    padding: 20px 40px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about-overlay-text p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.founder-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    #about-us .row:first-child {
        display: flex;
        flex-direction: column;
    }
    #about-us .col-md-4 {
        display: flex;
        flex-direction: column;
    }
    #about-us .section-heading {
        order: 1; /* Heading first */
        font-size: 2rem; /* Adjusted for mobile readability */
        text-align: center;
        margin-bottom: 20px;
    }
    #about-us .col-md-8 {
        order: 2; /* Image second */
    }
    #about-us .founder-name {
        order: 3; /* Founder name third */
        font-size: 1rem;
        text-align: center;
        margin-top: 10px; /* Space above founder name */
    }
    #about-us .founder-image {
        width: 100%; /* Full width on mobile */
        height: auto;
        margin-bottom: 20px; /* Space between image and founder name */
    }
}