.about-section {
    padding: 100px 0;
    color: #333;
    font-family: 'Inter', sans-serif;
    background: #fff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(196, 14, 29, 0.1);
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-eyebrow {
    color: #c40e1d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.about-stat-item h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #c40e1d;
    margin: 0;
    line-height: 1;
}

.about-stat-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-top: 5px;
    display: block;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }
}