/* Services section */
.services {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(46, 142, 145, 0.08);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 142, 145, 0.05);
    display: flex;
    flex-direction: column;
    height: auto;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 142, 145, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 142, 145, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    color: var(--dark-gray);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.5;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Tablet */
@media (max-width: 1200px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }

    .section-title p {
        font-size: 1.05rem;
    }
}

/* Services Mobile */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto 1rem auto;
    }

    .section-title h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-title p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        padding: 0 0.5rem;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }
}