/* Additional responsive styles for Services page */
        
        /* Service Detail Cards */
        .service-detail-card {
            background: var(--bg-light);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 50px var(--shadow-light);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
            margin-bottom: 2rem;
        }
        
        .service-detail-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .service-detail-card:hover::before {
            left: 100%;
        }
        
        .service-detail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px var(--shadow-medium);
            border-color: var(--primary-gold);
        }
        
        .service-header {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .service-icon-large {
            width: 100px;
            height: 100px;
            background: var(--gradient-green);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--text-light);
            box-shadow: 0 15px 40px rgba(11, 77, 44, 0.3);
            flex-shrink: 0;
        }
        
        .service-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .service-content p {
            color: var(--text-gray);
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .service-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            color: var(--text-gray);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list i {
            color: var(--primary-gold);
            font-size: 1rem;
            width: 20px;
        }
        
        .service-cta {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-outline:hover {
            background: var(--primary-green);
            color: var(--text-light);
            transform: translateY(-2px);
        }
        
        /* Process Steps */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-step::after {
            content: "";
            position: absolute;
            top: 50px;
            right: -1rem;
            width: 2rem;
            height: 2px;
            background: var(--primary-gold);
            opacity: 0.3;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 auto 1rem;
        }
        
        .step-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }
        
        .step-description {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        /* FAQ Section */
        .faq-item {
            background: var(--bg-light);
            border-radius: 15px;
            margin-bottom: 1rem;
            box-shadow: 0 5px 20px var(--shadow-light);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.5rem 2rem;
            background: var(--bg-light);
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--bg-gray);
        }
        
        .faq-question.active {
            background: var(--primary-green);
            color: var(--text-light);
        }
        
        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 1.5rem 2rem;
            max-height: 200px;
        }
        
        .faq-answer p {
            color: var(--text-gray);
            line-height: 1.6;
            margin: 0;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .service-features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }
            
            .service-icon-large {
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .service-detail-card {
                padding: 2rem;
            }
            
            .service-content h3 {
                font-size: 1.5rem;
            }
            
            .service-content p {
                font-size: 1rem;
            }
            
            .service-cta {
                flex-direction: column;
            }
            
            .btn-outline {
                justify-content: center;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .process-step::after {
                display: none;
            }
            
            .faq-question {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }
            
            .faq-answer.active {
                padding: 1rem 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .service-detail-card {
                padding: 1.5rem;
            }
            
            .service-icon-large {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            
            .service-content h3 {
                font-size: 1.3rem;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .step-title {
                font-size: 1rem;
            }
            
            .step-description {
                font-size: 0.8rem;
            }
        }