section.our-services {
    padding: 80px 20px;
    background-color: #fff;
}
.our-services .title {
    text-align: center;
    margin-bottom: 30px;
}
.our-services .title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}
.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s all ease-in-out;
    text-align: center;
    padding: 15px;
}
.service-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}
.service-item img {
    width: 259px; /* Default width */
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px; /* Adding border radius */
}
.service-item h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 10px 0;
}
.service-item p {
    font-size: 14px;
    color: #555;
    padding: 0 10px 15px;
    line-height: 1.5;
}
.service-item .read-more {
    display: inline-block;
    padding: 8px 16px;
    background-color: #2699cf;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.service-item .read-more:hover {
    background-color: #1d80a6;
}

/* Responsive Design */

@media (max-width: 768px) {
    .service-item img {
        width: 297px; /* Wider images for mobile screens */
    }
}