.about-container {
    background-color: #fdfcf8;
    /* Warm off-white */
    color: #1a1a1a;
    /* Dark gray for text */
    min-height: 100vh;
    font-family: inherit;
}

.about-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.about-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    /* Keep the text readable on the banner image */
}

.about-title {
    color: #333333;
    /* Title on banner stays white */
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 12px;
    animation: fadeInDown 1.2s ease-out;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.about-section {
    margin-bottom: 6rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    color: #111;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #111;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    /* Darker text for white bg */
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-text strong {
    color: #000;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    padding: 2rem;
    background: #fff;
    /* Light cards */
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #ddd;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #000;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }

    .about-banner {
        height: 40vh;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}