/* About Us Section with 4 Photo Cards */
.about-photos-modern {
    background: linear-gradient(to bottom, #f8f9fa, white);
    padding: 100px 0;
}

.about-photo-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    min-height: 280px;
}

.about-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-photo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 183, 55, 0.1), rgba(30, 139, 42, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-photo-card:hover::after {
    opacity: 1;
}

.about-photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(42, 183, 55, 0.3);
}

.about-photo-card:hover img {
    transform: scale(1.1);
}

.about-content-modern {
    padding-left: 2rem;
}

.about-badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, #2ab737, #3dd04f);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(42, 183, 55, 0.3);
}

.about-content-modern h2 {
    color: #1e8b2a;
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #2ab737, #3dd04f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.about-feature-item span {
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .about-content-modern {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .about-content-modern h2 {
        font-size: 2rem;
    }
}
