@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');

.our-services-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 1rem;
    color: black;
    box-sizing: border-box;
    overflow: hidden;
    max-width: 1366px;
    margin: 0 auto;
    margin-bottom: 1rem;
}
.our-services-title {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: bold;
}
.services-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
    margin-bottom: 1rem;
}

@media screen and (max-width: 928px) {
    .services-section {
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* Mobile View */
@media screen and (max-width: 515px) {
    .services-section {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Mobile View */
@media screen and (max-width: 480px) {
    .our-services-title {
        font-size: 1.5rem;
    }
    .services-header h2 {
        font-size: 1.5rem;
    }
}
