﻿.about-services-section {
    background-color: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
}

.services-container {
    max-width: 1100px;
    margin: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .service-item h3 {
        color: #003b5c;
        margin-bottom: 0.5rem;
    }

    .service-item p {
        color: #555;
        font-size: 0.95rem;
    }
