/* Services Section */
    .services-section {
        padding: 6rem 0;
        background: #f8f9fa;
    }

    .services-container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Section Header */
    .services-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 5rem;
    }

    .section-subtitle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .subtitle-line {
        width: 50px;
        height: 2px;
        background: #1E73BE;
    }

    .section-subtitle span {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1E73BE;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #000000;
        line-height: 1.3;
        margin: 0 0 1rem 0;
    }

    .section-description {
        font-size: 1rem;
        color: #666666;
        line-height: 1.7;
        margin: 0;
    }

    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    /* Service Card */
    .service-card {
        background: #ffffff;
        border-radius: 0;
        overflow: hidden;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
        position: relative;
    }

    .service-card:hover {
        border-left-color: #1E73BE;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    /* Service Image */
    .service-image {
        width: 100%;
        height: 180px;
        overflow: hidden;
        position: relative;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        transition: all 0.4s ease;
    }

    .service-card:hover .service-image img {
        transform: scale(1.05);
    }

    .service-card:hover .image-overlay {
        background: rgba(0, 0, 0, 0.4);
    }

    /* Service Content */
    .service-content {
        padding: 2rem 1.5rem;
    }

    /* Service Header */
    .service-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Service Number */
    .service-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #e8e8e8;
        line-height: 1;
    }

    /* Service Icon */
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        background: #1E73BE;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .service-icon-wrapper i {
        font-size: 1.3rem;
        color: #ffffff;
    }

    /* Service Title */
    .service-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    /* Service Description */
    .service-description {
        font-size: 0.875rem;
        color: #666666;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* Service Link */
    .service-link {
        display: inline-block;
        color: #1E73BE;
        font-weight: 600;
        font-size: 0.85rem;
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: all 0.2s ease;
    }

    .service-link:hover {
        color: #155a94;
        padding-left: 5px;
    }

    /* Responsive Design */
    @media screen and (max-width: 1200px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }

        .service-content {
            padding: 2.5rem 2rem;
        }

        .service-image {
            height: 200px;
        }

        .service-number {
            font-size: 2.8rem;
        }

        .service-icon-wrapper {
            width: 55px;
            height: 55px;
        }
    }

    @media screen and (max-width: 768px) {
        .services-section {
            padding: 4rem 0;
        }

        .services-container {
            padding: 0 1.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .services-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .service-content {
            padding: 2rem 1.5rem;
        }

        .service-image {
            height: 180px;
        }

        .service-title {
            font-size: 1.3rem;
        }

        .service-description {
            font-size: 0.95rem;
        }
    }

    @media screen and (max-width: 576px) {
        .service-title {
            font-size: 1.1rem;
        }

        .service-description {
            font-size: 0.85rem;
        }

        .service-number {
            font-size: 2rem;
        }

        .service-icon-wrapper {
            width: 50px;
            height: 50px;
        }
    }