/* General Styling */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #e6eff7;
    margin: 0;
    padding: 0;
}

.services-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #f5f9fd;
}

.services-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-image-container {
    flex: 1;
    margin-right: 40px;
}

.service-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-details {
    flex: 1;
}

.service-title {
    font-size: 32px;
    color: #004aad;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        padding: 20px;
    }

    .service-image-container {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .service-title {
        text-align: center;
    }

    .service-list {
        text-align: left;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 26px;
    }

    .service-list li {
        font-size: 16px;
    }
}
