/* Services Page Styles */
.services-page-container {
    padding: 60px 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
}

.services-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.services-section:hover {
    transform: translateY(-5px);
}

.services-section:nth-child(even) {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-image {
    flex: 1;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.services-section:hover .service-image img {
    transform: scale(1.05);
}

.service-content h3 {
    font-size: 2rem;
    color: #2272bc;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #2272bc;
}

.service-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    color: #444;
    font-size: 1rem;
}

.service-list li::before {
    content: '\f00c';
    /* FontAwesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #28a745;
}

@media (max-width: 992px) {
    .services-section {
        flex-direction: column !important;
    }

    .service-image {
        width: 100%;
        min-height: 250px;
    }

    .service-content {
        width: 100%;
    }
}