:root {
            --primary: #0f172a;
            --secondary: #0ea5e9;
            --accent: #8b5cf6;
            --success: #10b981;
            --light: #fffdf0;
            --dark: #0f172a;
            --gradient-1: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
            --gradient-2: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
            --gradient-3: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background: #ffffff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 26px 24px;
        }

        /* Modern Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

   header.scrolled {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: padding 0.3s ease;
        }

        header.scrolled nav {
            padding: 12px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            text-decoration: none;
            color: inherit;
            z-index: 1001;
        }
header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 24px;
}

        .logo-img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            font-size: 18px;
            font-weight: 800;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
        }

        .nav-links li {
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            font-size: 15px;
        }

        .nav-links a:not(.cta-btn):hover {
            color: var(--secondary);
        }

        .nav-links a:not(.cta-btn)::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-2);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:not(.cta-btn):hover::after {
            width: 100%;
        }

        .nav-links a.active:not(.cta-btn) {
            color: var(--secondary);
        }

        .nav-links a.active:not(.cta-btn)::after {
            width: 100%;
        }

        .cta-btn {
            background: var(--gradient-2);
            color: white !important;
            padding: 14px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            font-size: 15px;
            box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary);
            z-index: 1001;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: var(--light);
        }

        /* Page Header */
        .page-header {
            background: var(--gradient-1);
            color: white;
            padding: 160px 0 100px;
            margin-top: 82px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
            opacity: 0.8;
        }

        .page-dots {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.5;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, transparent, #ffffff);
        }

        .page-header-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            animation: fadeInUp 0.6s ease forwards;
        }

        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .page-badge i {
            color: var(--success);
        }

        .page-header h1 {
            font-size: clamp(40px, 6vw, 60px);
            margin-bottom: 24px;
            line-height: 1.1;
            letter-spacing: -0.5px;
            font-weight: 800;
        }

        .page-header h1 span {
            background: linear-gradient(135deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-header p {
            font-size: clamp(16px, 2vw, 20px);
            opacity: 0.92;
            font-weight: 300;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header .badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
            color: var(--secondary);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            color: var(--primary);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 18px;
            color: #64748b;
            line-height: 1.7;
            margin: 0 auto;
        }

        /* Main Services Section */
        .main-services {
            padding: 100px 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .service-detail-card {
            background: #fffdf0;
            padding: 48px;
            border-radius: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .service-detail-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.03), rgba(139, 92, 246, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-detail-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-2);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-detail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .service-detail-card:hover::before,
        .service-detail-card:hover::after {
            opacity: 1;
        }

        .service-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
                align-items: center;
        }

        .service-icon-large {
            width: 52px;
            height: 52px;
            background: var(--gradient-2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
            transition: transform 0.3s ease;
        }

        .service-detail-card:hover .service-icon-large {
            transform: scale(1.05);
        }

        .service-icon-large i {
            font-size: 26px;
            color: white;
        }

        .service-header-text h3 {
            font-size: 26px;
            color: var(--primary);
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 8px;
        }

        .service-tag {
            display: inline-block;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
            color: var(--success);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-description {
            color: #475569;
            line-height: 1.9;
            margin-bottom: 24px;
            font-size: 16px;
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        .service-features {
            list-style: none;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
            padding: 0;
        }

        .service-features li {
            color: #475569;
            margin-bottom: 12px;
            padding-left: 32px;
            position: relative;
            font-weight: 500;
            font-size: 15px;
            line-height: 1.6;
        }

        .service-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 20px;
            height: 20px;
            background: var(--success);
            border-radius: 50%;
        }

        .service-features li::after {
            content: '✓';
            position: absolute;
            left: 5px;
            top: 3px;
            color: white;
            font-size: 12px;
            font-weight: 700;
        }

        .service-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            padding: 10px 0;
        }

        .service-cta i {
            transition: transform 0.3s ease;
        }

        .service-cta:hover {
            color: var(--accent);
        }

        .service-cta:hover i {
            transform: translateX(4px);
        }

        /* Process Timeline */
        .process-timeline {
            padding: 100px 0;
            background: var(--light);
            position: relative;
            overflow: hidden;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to bottom, white, transparent);
            z-index: 0;
        }

        .timeline-container {
            position: relative;
            z-index: 1;
        }

        .timeline-items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        .timeline-item {
            background: white;
            padding: 40px 32px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            text-align: center;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-3);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .timeline-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .timeline-item:hover::before {
            transform: scaleX(1);
        }

        .timeline-number {
            width: 56px;
            height: 56px;
            background: var(--gradient-3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 800;
            color: white;
            margin: 0 auto 20px;
            box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3);
        }

        .timeline-item h4 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .timeline-item p {
            color: #64748b;
            line-height: 1.7;
            font-weight: 400;
            font-size: 15px;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 100px 0;
            background: white;
        }

        .pricing-info {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .pricing-card {
            background: var(--light);
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-2);
        }

        .pricing-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
        }

        .pricing-icon i {
            font-size: 36px;
            color: white;
        }

        .pricing-card h3 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .pricing-card > p {
            font-size: 17px;
            color: #475569;
            line-height: 1.9;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .pricing-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 32px 0;
            text-align: left;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #475569;
            font-size: 15px;
            font-weight: 500;
        }

        .pricing-feature i {
            color: var(--success);
            font-size: 18px;
        }

        .pricing-highlight {
            background: white;
            padding: 28px 32px;
            border-radius: 16px;
            border-left: 4px solid var(--secondary);
            margin-top: 32px;
            display: flex;
            align-items: center;
            gap: 16px;
            text-align: left;
        }

        .pricing-highlight i {
            font-size: 28px;
            color: var(--secondary);
        }

        .pricing-highlight p {
            font-size: 17px;
            color: var(--primary);
            font-weight: 600;
            margin: 0;
        }

        /* FAQs Section */
        .faqs-section {
            padding: 100px 0;
            background: var(--light);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            padding: 28px 32px;
            border-radius: 16px;
            margin-bottom: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            cursor: pointer;
        }

        .faq-item:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .faq-item.active {
            border-color: var(--secondary);
            box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .faq-question h4 {
            font-size: 18px;
            color: var(--primary);
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            line-height: 1.4;
        }

        .faq-toggle {
            width: 36px;
            height: 36px;
            background: var(--gradient-2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-toggle i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle i {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top: 20px;
        }

        .faq-answer p {
            color: #475569;
            line-height: 1.9;
            font-size: 16px;
            font-weight: 400;
            padding-left: 0;
            border-left: 3px solid var(--secondary);
            padding-left: 16px;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: var(--gradient-2);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255,255,255,0.15) 0%, transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(255,255,255,0.15) 0%, transparent 30%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border: 2px solid transparent;
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-color: white;
            background: rgba(255, 255, 255, 0.95);
        }

        .btn-secondary i {
            font-size: 18px;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }

        .footer-section h3 {
            margin-bottom: 24px;
            font-size: 20px;
            font-weight: 700;
            color: white;
            font-family: 'Playfair Display', serif;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            font-weight: 400;
            line-height: 1.7;
            font-size: 15px;
        }

        .footer-section a:hover {
            color: var(--secondary);
            transform: translateX(4px);
        }

        .footer-section p strong {
            color: white;
            font-weight: 600;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
            margin: 0 8px;
        }

        .footer-bottom a:hover {
            color: var(--secondary);
        }

        /* Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-overlay.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid var(--light);
            border-top-color: var(--secondary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes ripple {
            to {
                transform: scale(2);
                opacity: 0;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        /* Focus Styles */
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .timeline-items {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-features {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                left: -100%;
                top: 0;
                height: 100vh;
                width: 100%;
                background: white;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                padding: 0;
                gap: 32px;
                z-index: 1000;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                font-size: 22px;
                font-weight: 600;
            }
            
            .nav-links a:not(.cta-btn)::after {
                display: none;
            }

            .page-header {
                padding: 130px 0 80px;
                margin-top: 70px;
            }

            .service-detail-card {
                padding: 32px 24px;
            }

            .service-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .timeline-items {
                grid-template-columns: 1fr;
            }

            .pricing-card {
                padding: 40px 24px;
            }

            .pricing-features {
                grid-template-columns: 1fr;
            }

            .pricing-highlight {
                flex-direction: column;
                text-align: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .footer-section a:hover {
                transform: none;
            }

            .logo-img {
                height: 36px;
            }
            
            .logo-text {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons a {
                width: 100%;
                justify-content: center;
            }

            .service-icon-large {
                width: 64px;
                height: 64px;
            }

            .service-icon-large i {
                font-size: 28px;
            }

            .faq-question h4 {
                font-size: 16px;
            }

            .faq-toggle {
                width: 32px;
                height: 32px;
            }
        }