.services-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 30px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.service-item:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.service-item p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 card per row on mobile */
    }

    .service-item {
        max-width: 100%; /* Full width on mobile */
    }

    .section-title {
        font-size: 2rem;
    }
}
