.about-us-section {
    padding: 80px 20px;
    background-color: #fff;
}

.about-us-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-us-title {
    font-family: 'Playfair Display', serif; /* Or 'Outfit' based on preference, keeping consistent */
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #333;
    letter-spacing: 1px;
}

/* Removing underline to match clean design */
.title-underline {
    display: none;
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal split */
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image container specific styling if needed, but targeting image directly usually works */
.about-us-image {
    width: 100%;
    max-width: 500px; /* Reducing max width as requested */
    height: auto;
    border-radius: 30px; /* Soft edges */
    box-shadow: none; /* Clean look */
    display: block;
    margin: 0 auto 0 0; /* Align left in its column */
    object-fit: cover;
}

.about-us-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.placeholder-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #999;
}

.about-us-content {
    font-family: 'Outfit', sans-serif;
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
    padding-right: 20px;
}

/* .content-title removed in HTML */

.content-text p {
    margin-bottom: 24px;
    font-weight: 400;
    color: #444;
}

.features-section {
    margin-top: 40px;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
}

.feature-icon {
    margin-right: 12px;
    color: #333; /* Monochrome icon */
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-us-image {
        margin: 0 auto; /* Center image on mobile */
    }
    
    .about-us-content {
        padding-right: 0;
        text-align: center; /* Center text on mobile */
    }
    
    .feature-item {
        justify-content: center;
    }
}
