/* General Styles */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    background: linear-gradient(to bottom, #000000, #1A1A2E);
}

/* Services Page Styles */
.services-overview {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-overview h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.services-overview p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Service Items - Bubble Style */
.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-item {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.service-item h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #000000;
}

.service-item p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #000000;
}


/* Adjustments for screens up to 1024px wide */
@media (max-width: 1024px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-overview h1 {
        font-size: 30px;
    }

    .services-overview p {
        font-size: 16px;
    }
}

/* Adjustments for screens up to 768px wide */
@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr;
    }

    .services-overview {
        padding: 40px 20px;
    }

    .services-overview h1 {
        font-size: 28px;
    }
}

/* Adjustments for screens up to 480px wide */
@media (max-width: 480px) {
    .service-list {
        grid-template-columns: 1fr;
    }

    .service-item img {
        max-width: 60px;
    }

    .services-overview h1 {
        font-size: 24px;
    }

    .services-overview p {
        font-size: 14px;
    }
}
