
        :root {
            --primary: #060606;
            --secondary: #4ECDC4;
            --dark: #292F36;
            --light: #F7FFF7;
            --accent: #FFE66D;
            --gray: #6C757D;
            --dark-blue: #1A535C;
            --border: #e0e0e0;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'lato', sans-serif;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
            line-height: 1.7;
            font-weight: 400;
        }

        h1, h2, h3, h4 {
            font-family: 'lato', sans-serif;
            font-weight: 500;
            line-height: 1.3;
            color: var(--dark);
        }

        .container-wrapper {
            display: flex;
            width: 95%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            gap: 25px;
            align-items: flex-start;
        }

        /* Left Column - Services - INCREASED WIDTH */
        .services-column {
            flex: 1.1;
            display: flex;
            flex-direction: column;
        }

        /* Right Column - Service Process - DECREASED WIDTH */
        .process-column {
            flex: 0.8;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sticky-column {
            position: sticky;
            top: 100px;
        }

        /* Service Group Container */
        .service-group {
            background: white;
            padding: 0;
            margin-bottom: 30px;
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .service-group-header {
            padding: 15px 20px;
            border-bottom: 1px solid var(--border);
            background-color: #f9f9f9;
        }

        .service-group-title {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark);
            font-weight: 500;
        }

        .service-group-description {
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 400;
        }

        .service-items-container {
            padding: 0;
        }

        .service-item {
            background: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            gap: 15px;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        .service-item:last-child {
            border-bottom: none;
        }

        .service-item:hover {
            background-color: #f9f9f9;
        }

        .service-content {
            flex: 1;
        }

        .service-image-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            min-width: 100px;
        }

        .service-image {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border: 1px solid var(--border);
            border-radius: 6px;
            /* Fix for blurry images - ensure proper rendering */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .service-title {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--dark);
            font-weight: 500;
        }

        .service-rating {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: var(--gray);
            font-size: 0.85rem;
            font-weight: 400;
        }

        .service-rating .stars {
            color: #FFD700;
            margin-right: 5px;
        }

        .service-price-container {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

        .price-label {
            font-size: 0.85rem;
            color: var(--gray);
            margin-right: 8px;
            font-weight: 400;
        }

        .service-price {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .service-price .currency {
            font-family: 'lato', sans-serif;
            margin-right: 2px;
        }

        .service-duration {
            color: var(--gray);
            font-size: 0.85rem;
            margin-left: 8px;
            font-weight: 400;
        }

        .service-description {
            color: var(--gray);
            margin-bottom: 12px;
            font-size: 0.9rem;
            font-weight: 400;
            line-height: 1.5;
        }

        .service-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn-show-more {
            background: none;
            border: none;
            color: var(--primary);
            font-weight: 500;
            cursor: pointer;
            padding: 5px 0;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .btn-show-more:hover {
            color: var(--secondary);
        }

        .btn-add {
            background: #4a90e2;
            color: white;
            border: none;
            padding: 8px 15px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
            width: 100%;
            justify-content: center;
            font-size: 0.9rem;
            border-radius: 6px;
        }

        .btn-add:hover {
            background: #357abd;
        }

        .btn-add.added {
            background: #150d43ff;
        }

        .btn-add.adding {
            background: #6c757d;
            cursor: not-allowed;
        }

        /* Service Process */
        .service-process {
            background: white;
            padding: 20px;
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .process-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--dark);
            border-bottom: 1px solid var(--border);
            padding-bottom: 10px;
            font-weight: 500;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .process-step {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .step-number {
            width: 25px;
            height: 25px;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 0.8rem;
            border-radius: 50%;
        }

        .step-text {
            flex: 1;
            font-weight: 400;
            font-size: 0.9rem;
        }

        /* FX Engineering Brand Section */
        .fx-brand-section {
            background: white;
            padding: 20px;
            border: 1px solid var(--border);
            margin-bottom: 20px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .fx-logo {
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 12px;
            font-family: 'lato', sans-serif;
        }

        .fx-tagline {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 15px;
            font-weight: 400;
        }

        .fx-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 15px;
        }

        .fx-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            text-align: left;
        }

        .fx-feature i {
            color: var(--primary);
            font-size: 1.1rem;
            width: 20px;
        }

        .fx-feature-text {
            flex: 1;
        }

        .fx-feature-title {
            font-weight: 500;
            margin-bottom: 3px;
            font-size: 0.95rem;
        }

        .fx-feature-desc {
            color: var(--gray);
            font-size: 0.85rem;
            font-weight: 400;
        }

        /* Service Header with Text Overlay - FIXED */
        .service-header-container {
            position: relative;
            width: 100%;
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            height: 400px; /* Fixed height for desktop */
        }

        .service-header-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            /* Fix for blurry images - ensure proper rendering */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        /* New styles for the service group image */
        .service-group-image-container {
            width: 100%;
            overflow: hidden;
            margin-bottom: 30px;
            border-radius: 8px;
            border: 1px solid var(--border);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            height: 420px; /* Fixed height for desktop */
        }

        .service-group-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            /* Fix for blurry images - ensure proper rendering */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .container-wrapper {
                flex-direction: column;
                padding: 15px;
                gap: 20px;
            }
            
            .services-column {
                order: 1;
                width: 100%;
                flex: 1;
            }
            
            .process-column {
                display: none;
            }
            
            .sticky-column {
                position: static;
            }
            
            /* Service header responsive */
            .service-header-container {
                margin-bottom: 20px;
                height: 300px; /* Fixed height for tablet */
            }
            
            .service-group-image-container {
                height: 300px; /* Fixed height for tablet */
            }
        }

        @media (max-width: 768px) {
            .service-item {
                flex-direction: row; /* Keep side-by-side layout on mobile */
            }
            
            .service-image {
                width: 70px; /* Smaller images on mobile */
                height: 70px;
            }
            
            .btn-add {
                padding: 8px 12px;
                width: auto;
            }
            
            /* Service header responsive */
            .service-header-container {
                margin-bottom: 15px;
                height: 250px; /* Fixed height for mobile */
            }
            
            .service-group-image-container {
                height: 250px; /* Fixed height for mobile */
            }
            
            .service-image-container {
                min-width: 90px; /* Smaller container for mobile */
            }
        }

        @media (max-width: 480px) {
            .container-wrapper {
                padding: 10px;
            }
            
            .service-item {
                padding: 12px;
                flex-direction: row; /* Maintain side-by-side layout */
            }
            
            .btn-add {
                width: 100%;
                padding: 8px;
                font-size: 0.85rem;
            }
            
            /* Service header responsive */
            .service-header-container {
                margin-bottom: 10px;
                height: 200px; /* Fixed height for small mobile */
            }
            
            .service-group-image-container {
                height: 200px; /* Fixed height for small mobile */
            }
            
            .service-image {
                width: 60px; /* Even smaller images on small mobile */
                height: 60px;
            }
            
            .service-image-container {
                min-width: 80px;
            }
            
            .service-content {
                padding-right: 10px;
            }
        }

        /* Divider */
        .divider {
            height: 1px;
            background-color: var(--border);
            margin: 12px 0;
            border: none;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            overflow-y: auto;
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 25px;
            width: 90%;
            max-width: 700px;
            border-radius: 8px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--gray);
            transition: var(--transition);
        }

        .close-modal:hover {
            color: var(--primary);
        }

        .modal-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .modal-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            margin-bottom: 15px;
            border-radius: 6px;
            /* Fix for blurry images - ensure proper rendering */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .sub-services {
            margin: 15px 0;
        }

        .problem-steps {
            margin: 15px 0;
        }

        .problem-step {
            display: flex;
            margin-bottom: 12px;
        }

        .problem-step-number {
            background-color: var(--primary);
            color: white;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 12px;
            flex-shrink: 0;
            font-size: 0.8rem;
        }

        .problem-step-text {
            flex: 1;
            font-size: 0.9rem;
        }

        /* Modal Brands Section */
        .modal-brands-section {
            margin: 15px 0;
        }

        .modal-brands-title {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--dark);
            border-bottom: 1px solid var(--border);
            padding-bottom: 8px;
            font-weight: 500;
        }

        .modal-brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 12px;
            margin-top: 12px;
        }

        .modal-brand-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px;
            border: 1px solid var(--border);
            border-radius: 6px;
            transition: var(--transition);
        }

        .modal-brand-item:hover {
            border-color: var(--primary);
        }

        .modal-brand-logo {
            width: 50px;
            height: 30px;
            object-fit: contain;
            margin-bottom: 6px;
            /* Fix for blurry images - ensure proper rendering */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .modal-brand-name {
            font-size: 0.75rem;
            font-weight: 500;
            text-align: center;
        }

        /* Modal FAQ Section */
        .modal-faq-section {
            margin: 15px 0;
        }

        .modal-faq-title {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--dark);
            border-bottom: 1px solid var(--border);
            padding-bottom: 8px;
            font-weight: 500;
        }

        .modal-faq-item {
            margin-bottom: 8px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 8px;
        }

        .modal-faq-question {
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .modal-faq-question:hover {
            color: var(--secondary);
        }

        .modal-faq-answer {
            margin-top: 6px;
            color: var(--gray);
            display: none;
            font-size: 0.85rem;
        }

        .modal-faq-item.active .modal-faq-answer {
            display: block;
        }

        .modal-faq-toggle {
            font-weight: bold;
            transition: var(--transition);
        }

        .modal-faq-item.active .modal-faq-toggle {
            transform: rotate(45deg);
        }

        /* New styles for bullet points in modal */
        .included-list {
            list-style-type: none;
            padding-left: 0;
            margin: 15px 0;
        }

        .included-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .included-list li:before {
            content: "•";
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
            position: absolute;
            left: 0;
            top: -2px;
        }

        /* Service Description in Modal */
        .service-description {
            line-height: 1.6;
        }

        .service-description p {
            margin-bottom: 15px; 
        }
    /* Cart Dropdown Styles - FIXED */
.cart-container {
    position: relative;
    display: inline-block;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    font-size: 1.2rem;
    color: #333;
}

.cart-btn:hover {
    background-color: #f8f9fa;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.cart-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cart-dropdown-content {
    padding: 20px;
    max-height: 500px;
    overflow-y: auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
}

.cart-empty i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #bdc3c7;
    opacity: 0.7;
}

.cart-empty p {
    margin: 0;
    font-size: 1.1rem;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
}

.cart-item:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 0 -15px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
    padding-right: 15px;
}

.cart-item-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1rem;
}

.cart-item-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #95a5a6;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cart-item-remove:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
}

.cart-total-section {
    border-top: 2px solid #f8f9fa;
    padding-top: 20px;
    background: #f8f9fa;
    margin: -20px;
    margin-top: 20px;
    padding: 20px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-checkout:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure dropdown appears above other content */
.cart-dropdown {
    animation: fadeInUp 0.3s ease;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .cart-dropdown {
        width: 320px;
        right: -50px;
    }
    
    .cart-dropdown-content {
        padding: 15px;
    }
}