/* Section styling */
.services-section {
    max-width: 1120px; /* Set max width */
    margin: 0 auto; /* Center align */
    margin-top: 50PX;
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}


/* Header styling */
.services-section h2 {
    font-size: 24px;
    font-weight: 400;
}

.services-section h2 span {
    color: #0073e6;
    font-weight: 800; /* Accent color */
}



/* Description styling */
.services-description {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 16px;
}

.services-description a {
    color: #0a2642;
    text-decoration: none;
    font-weight: bold;
}

.services-description a {
    color: #0073e6;
}

/* Container styling */
.services-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Service item styling */
.service-item {
    background-color: #eaf6ff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #0073e6;
    font-size: 18px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    margin-bottom: 10px;
}

.service-item a {
    color: #5f84a8;
    text-decoration: none;
    font-weight:500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-description {
        font-size: 14px;
    }
    
    .service-item h3 {
        font-size: 16px;
    }
    
    .service-item p {
        font-size: 13px;
    }
}


.service-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: 0.3s;
}
