Services section 
.services-section {
    padding: 60px 0;
    background-color: #f8f8f8; /* Light background for the section */
    text-align: center;
}

.services-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px); /* Subtle hover effect */
}

.service-card i {
    font-size: 3em;
    color: #007bff; /* Accent color for icons */
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #555;
}

.service-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #777;
}
