/* Services Intro Section */
#services-intro {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #1E2A38, #2E3E4E);
    color: white;
}

/* Services List */
#services-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 50px;
    text-align: center;
    margin: 150px 0;
}

.service {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service img {
    width: 80px;
    margin-bottom: 15px;
}

.service h2 {
    font-size: 22px;
    color: #1E2A38;
}

.service p {
    font-size: 16px;
    color: #555;
}

/* Call-to-Action */
#services-cta {
    text-align: center;
    padding: 50px;
    background-color: #1E2A38;
    color: white;
}

.cta-button {
    background-color: #ff6600;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #e65500;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    #services-list {
        flex-direction: column;
        align-items: center;
    }
   
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    #services-list {
        flex-direction: column;
        align-items: center;
        padding: 30px;
        margin: 80px 0; /* Reduce margin to keep spacing balanced */
    }

    .service {
        width: 75%; /* Make services thinner but not too narrow */
        max-width: 280px; /* Prevents them from being too large */
        padding: 15px; /* Reduce padding for compactness */
    }
}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {
    .service {
        width: 85%; /* Slightly wider on very small screens */
        max-width: 260px;
        padding: 12px;
    }

    .service h2 {
        font-size: 20px; /* Reduce title size slightly */
    }

    .service p {
        font-size: 14px;
    }
}



