/* Services Section */
#services { 
    background-color: #fff4e6; 
}

.service-cards { 
    display: flex; 
    justify-content: space-around; 
    flex-wrap: wrap; 
    gap: 2rem; 
    max-width: 1200px; 
    margin: 4rem auto 0;
}

/* Styles updated to match .value-item */
.card { 
    flex: 1; 
    text-align: center; 
    padding: 2.5rem 2rem; 
    background: #fff; 
    border-radius: 10px; 
    border: 1px solid #e9ecef; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    transition: transform 0.3s, box-shadow 0.3s;
    /* min-width: 280px; --- This line has been removed to allow proper resizing --- */
}

.card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
}

/* Styles updated to match .value-icon */
.card-icon { 
    width: 70px; 
    height: 70px; 
    margin: 0 auto 1.5rem; 
    background: #f39c12; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2rem; 
    color: #fff; 
}

.card h3 { 
    font-size: 1.2rem; 
    margin-bottom: 0.5rem; 
}

/* This class is no longer used and can be removed */
.card-link { 
    display: none;
}

/* --- NEW MOBILE STYLES START HERE --- */
@media (max-width: 900px) {
    .service-cards {
        flex-direction: column; /* Stacks the service cards vertically */
    }
}
/* --- NEW MOBILE STYLES END HERE --- */