        .service-section {
            background-color: #ffffff;
            padding: 80px 0;
        }

        .service-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .service-section .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-section .section-header {
            margin-bottom: 60px;
            margin-left: 25px;
            margin-right: 25px;
        }

        .service-section .label {
            color: #d12a69;
            font-size: 16px;
            font-weight: 600;
            text-transform: capitalize;
            margin-bottom: 20px;
        }

        .service-section .main-heading {
            font-size: 52px;
            line-height: 1.2;
            color: #2c3e50;
            font-weight: 700;
        }

        .service-section .main-heading .highlight {
            color: #d12a69;
        }

        .service-section .section-description {
            color: #6b7280;
            font-size: 16px;
            line-height: 1.7;
            margin-top: 10px;
        }

        .service-section .services-row {
            margin-bottom: 30px;
        }

        .service-section .service-card {
            background-color: #f8f9fb;
            padding: 40px 30px;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            height: 100%;
            margin-bottom: 30px;
        }

        .service-section .service-card.primary {
            background-color: #2c3e50;
        }

        .service-section .service-card:hover ~ .service-card.primary,
        .service-section .container:hover .service-card.primary:not(:hover) {
            background-color: #f8f9fb !important;
        }

        .service-section .container:hover .service-card.primary:not(:hover) .service-icon {
            background-color: #2c3e50 !important;
        }

        .service-section .container:hover .service-card.primary:not(:hover) .service-title {
            color: #2c3e50 !important;
        }

        .service-section .container:hover .service-card.primary:not(:hover) .service-text {
            color: #6b7280 !important;
        }

        .service-section .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            background-color: #2c3e50 !important;
        }

        .service-section .service-card:hover .service-icon {
            background-color: #d12a69 !important;
        }

        .service-section .service-card:hover .service-title {
            color: #ffffff !important;
        }

        .service-section .service-card:hover .service-text {
            color: #e0e0e0 !important;
        }

        .service-section .service-card.primary:hover {
            background-color: #2c3e50 !important;
        }

        .service-section .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .service-section .service-card.primary .service-icon {
            background-color: #d12a69;
        }

        .service-section .service-card:not(.primary) .service-icon {
            background-color: #2c3e50;
        }

        .service-section .service-icon i {
            font-size: 28px;
            color: #ffffff;
        }

        .service-section .service-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .service-section .service-card.primary .service-title {
            color: #ffffff;
        }

        .service-section .service-card:not(.primary) .service-title {
            color: #2c3e50;
        }

        .service-section .service-text {
            font-size: 15px;
            line-height: 1.7;
            margin: 0;
        }

        .service-section .service-card.primary .service-text {
            color: #e0e0e0;
        }

        .service-section .service-card:not(.primary) .service-text {
            color: #6b7280;
        }

        @media (max-width: 767px) {
            .service-section {
                padding: 60px 0;
            }

            .service-section .main-heading {
                font-size: 36px;
                margin-bottom: 20px;
            }

            .service-section .section-header {
                margin-bottom: 40px;
            }

            .service-section .service-card {
                margin-bottom: 20px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .service-section .main-heading {
                font-size: 42px;
            }
        }
