
        :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.5; /* Increased from 1 to 2 */
            display: flex;
            flex-direction: column;
        }

        /* Right Column - Service Process - DECREASED WIDTH */
        .process-column {
            flex: 0.8; /* Decreased from 1 to 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;
        }

        .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: 120px;
        }

        .service-image {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border: 1px solid var(--border);
            border-radius: 6px;
        }

        .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 {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            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;
        }

        .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.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;
        }

        .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 - MOVED BACK TO RIGHT */
        .fx-brand-section {
            background: white;
            padding: 20px;
            border: 1px solid var(--border);
            margin-bottom: 20px;
            text-align: center;
            border-radius: 8px;
            width: 100%;
        }

        .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 */
        .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);
        }

        .service-header-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        /* 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;
            }
            
            .service-header-image {
                height: 250px;
            }
        }

        @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;
            }
            
            .service-header-image {
                height: 200px;
            }
            
            .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;
            }
            
            .service-header-image {
                height: 180px;
            }
            
            .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);
        }

        .modal-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .modal-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            margin-bottom: 15px;
            border-radius: 6px;
        }

        .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;
        }

        .modal-brand-logo {
            width: 50px;
            height: 30px;
            object-fit: contain;
            margin-bottom: 6px;
        }

        .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;
        }

        .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;
        }