        body {
            overflow-x: unset;
        }

        /* Services Page Specific Styles */
        .services-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            overflow: hidden;
        }

        .services-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('img/film-texture.jpg') center/cover;
            opacity: 0.05;
            z-index: 1;
        }

        .services-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(224, 49, 36, 0.1);
            border: 1px solid var(--brand-primary);
            border-radius: 50px;
            color: var(--brand-primary);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            animation: fadeInDown 0.8s ease;
        }

        .services-hero h1 {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .services-hero p {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: var(--white-muted);
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        /* Services Grid */
        .services-section {
            padding: 120px 0;
            background: var(--black-soft);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 50px 40px;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.animate-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--brand-primary);
            background: rgba(224, 49, 36, 0.05);
            box-shadow: 0 20px 60px rgba(224, 49, 36, 0.2);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            transition: all 0.5s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-icon svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        .service-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--white-primary);
        }

        .service-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--white-muted);
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .service-features li {
            padding: 8px 0;
            color: var(--white-muted);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-features li::before {
            content: '▸';
            color: var(--brand-primary);
            font-weight: bold;
        }

        .service-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--brand-primary);
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .service-cta svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-cta svg {
            transform: translateX(5px);
        }

        /* Stats Section */
        .stats-section {
            padding: var(--section-padding) 0;
            background: var(--black-primary);
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-top: 60px;
        }

        .stat-item {
            text-align: center;
            opacity: 0;
            transform: scale(0.8);
        }

        .stat-item.animate-in {
            animation: scaleIn 0.6s ease forwards;
        }

        .stat-number {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.2rem;
            color: var(--white-muted);
            font-weight: 500;
        }

        /* Why Us Section */
        .why-us-section {
            background: var(--black-soft);
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .why-item {
            padding: 40px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-subtle);
            border-radius: 15px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateX(-30px);
        }

        .why-item.animate-in {
            animation: slideInLeft 0.8s ease forwards;
        }

        .why-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--brand-primary);
            transform: translateX(10px);
        }

        .why-number {
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .why-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .why-item p {
            color: var(--white-muted);
            line-height: 1.8;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--black-primary);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

        .testimonial-card.animate-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--brand-primary);
            line-height: 1;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--white-muted);
            margin-bottom: 30px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--gray-muted);
            margin: 0;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--black-soft);
        }

        .faq-container {
            max-width: 900px;
            margin: 80px auto 0;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-subtle);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
        }

        .faq-item.animate-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        .faq-question {
            padding: 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .faq-question h3 {
            font-size: 1.3rem;
            margin: 0;
            font-weight: 600;
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 30px 30px;
            color: var(--white-muted);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            background: var(--black-primary);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(224, 49, 36, 0.25) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        .cta-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            margin-bottom: 30px;
        }

        .cta-content p {
            font-size: 1.3rem;
            color: var(--white-muted);
            margin-bottom: 50px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Contact Modal */
        .contact-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .contact-modal.active {
            display: flex;
            opacity: 1;
            overflow-y: auto;
            align-items: start;
        }

        .modal-content {
            background: var(--black-soft);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 50px;
            max-width: 600px;
            width: 90%;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .contact-modal.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--brand-primary);
            transform: rotate(90deg);
        }

        .modal-close svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .contact-modal .modal-header{
            flex-direction: column;
        }

        .modal-header h3 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .modal-header p {
            color: var(--white-muted);
            margin-bottom: 30px;
        }

        .modal-form .form-group {
            margin-bottom: 25px;
        }

        .modal-form label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--white-primary);
        }

        .modal-form input,
        .modal-form textarea,
        .modal-form select {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            color: var(--white-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .modal-form input:focus,
        .modal-form textarea:focus,
        .modal-form select:focus {
            outline: none;
            border-color: var(--brand-primary);
            background: rgba(255, 255, 255, 0.08);
        }

        .modal-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .modal-submit {
            width: 100%;
            padding: 18px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(224, 49, 36, 0.4);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.8;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {

            .services-grid,
            .why-us-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .modal-content {
                padding: 30px 20px;
            }

            .cta-buttons {
                flex-direction: column;
            }
        }

        /* Advanced Services Section - Premium Interactive Design */
        .advanced-services-section {
            padding: 120px 0;
            background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
            /* position: relative; */
            /* overflow: hidden; */
        }

        .advanced-services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(224, 49, 36, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(248, 112, 22, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .advanced-services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            /* z-index: 2; */
        }

        .advanced-services-header {
            text-align: center;
            margin-bottom: 100px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .advanced-services-header h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .advanced-services-header p {
            font-size: 1.2rem;
            color: var(--white-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .advanced-services-wrapper {
            display: flex;
            gap: 80px;
            align-items: flex-start;
            position: relative;
        }

        .services-list-container {
            flex: 1;
            max-width: 650px;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 40px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            opacity: 0;
            transform: translateX(-30px);
        }

        .service-item.animate-in {
            animation: slideInLeft 0.8s ease forwards;
        }

        .service-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 80%;
            background: var(--gradient-primary);
            border-radius: 0 10px 10px 0;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .service-item:hover::before,
        .service-item.active::before {
            width: 4px;
            opacity: 1;
        }

        .service-item:hover {
            padding-left: 20px;
        }

        .service-item.active {
            padding-left: 20px;
            background: rgba(224, 49, 36, 0.02);
        }

        .service-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.2);
            min-width: 50px;
            font-family: 'Courier New', monospace;
            transition: all 0.4s ease;
        }

        .service-item:hover .service-number,
        .service-item.active .service-number {
            color: var(--brand-primary);
            transform: scale(1.1);
        }

        .service-content {
            flex: 1;
        }

        .service-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--white-primary);
            transition: color 0.4s ease;
        }

        .service-item:hover .service-title,
        .service-item.active .service-title {
            color: var(--brand-primary);
        }

        .service-description {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--white-muted);
            max-width: 450px;
        }

        .service-arrow {
            width: 50px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-arrow::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transform: scale(0);
            border-radius: 50%;
            transition: transform 0.4s ease;
        }

        .service-arrow svg {
            width: 20px;
            height: 20px;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .service-item:hover .service-arrow,
        .service-item.active .service-arrow {
            border-color: var(--brand-primary);
            transform: rotate(45deg) scale(1.1);
        }

        .service-item:hover .service-arrow::before,
        .service-item.active .service-arrow::before {
            transform: scale(1);
        }

        .service-item:hover .service-arrow svg,
        .service-item.active .service-arrow svg {
            color: white;
            transform: rotate(-45deg);
        }

        .service-image-container {
            position: sticky;
            top: 80px;
            width: 500px;
            height: 600px;
            perspective: 1000px;
            opacity: 0;
            transform: scale(0.9);
            animation: scaleIn 0.8s ease 0.4s forwards;
        }

        .service-image-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            transform: translateZ(0);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(224, 49, 36, 0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 2;
        }

        .service-image-wrapper.active::before {
            opacity: 1;
        }

        .service-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transform: scale(1.1);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-image.active {
            opacity: 1;
            transform: scale(1);
        }

        .image-accent-dot {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 12px;
            height: 12px;
            background: var(--brand-primary);
            border-radius: 50%;
            opacity: 0;
            transform: scale(0);
            transition: all 0.4s ease;
            z-index: 3;
            box-shadow: 0 0 20px rgba(224, 49, 36, 0.8);
        }

        .service-image-wrapper.active .image-accent-dot {
            opacity: 1;
            transform: scale(1);
            animation: pulse-dot 2s ease infinite;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(224, 49, 36, 0.8);
            }

            50% {
                box-shadow: 0 0 40px rgba(224, 49, 36, 1);
            }
        }

        .image-badge {
            position: absolute;
            top: 30px;
            left: 30px;
            padding: 10px 20px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s ease;
            z-index: 3;
        }

        .service-image-wrapper.active .image-badge {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive for Advanced Services */
        @media (max-width: 1200px) {
            .advanced-services-wrapper {
                flex-direction: column;
                gap: 60px;
            }

            .service-image-container {
                position: relative;
                top: 0;
                width: 100%;
                max-width: 500px;
                height: 500px;
                margin: 0 auto;
                order: -1;
            }

            .services-list-container {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .advanced-services-section {
                padding: var(--section-padding) 0;
            }

            .advanced-services-container {
                padding: 0 20px;
            }

            .advanced-services-header {
                margin-bottom: 60px;
            }

            .service-item {
                gap: 20px;
                padding: 30px 0;
            }

            .service-number {
                font-size: 1.2rem;
                min-width: 40px;
            }

            .service-title {
                font-size: 1.4rem;
            }

            .service-description {
                font-size: 0.95rem;
            }

            .service-arrow {
                width: 40px;
                height: 40px;
            }

            .service-arrow svg {
                width: 16px;
                height: 16px;
            }

            .service-image-container {
                height: 400px;
            }

            .service-item:hover,
            .service-item.active {
                padding-left: 15px;
            }

            .service-item::before {
                width: 3px;
            }
        }

        @media (max-width:580px) {
            .advanced-services-header h2 {
                font-size: 2rem;
            }

            .advanced-services-header {
                margin-bottom: 10px;
            }

            .advanced-services-wrapper {
                gap: 20px;
            }

            .service-item {
                gap: 5px;
                padding-top: 10px;
                padding-bottom: 10px;
                margin-right: 10px;
            }

            .service-content p {
                margin: 0;
                font-size: 14px;
            }

            .service-arrow {
                margin-top: 0;
            }

            .service-item {
                flex-shrink: 0;
            }

            .services-list-container {
                width: 100%;
                display: flex;
                overflow-x: auto;
                overflow-y: hidden;
            }

            .stats-grid {
                margin-top: 20px;
                gap: 10px;
            }

            .stats-grid .stat-number {
                font-size: 2.5rem;
                margin-top: 10px;
            }

            .stats-grid .stat-label {
                font-size: 1rem;
            }

            .why-us-grid {
                margin-top: 20px;
                gap: 10px;
            }

            .why-item {
                padding: 0 10px;
            }

            .why-number {
                font-size: 2rem;
                margin: 0;
            }

            .why-item h3 {
                font-size: 1.2rem;
            }

            .why-item p {
                font-size: 0.95rem;
                margin-bottom: 10px;
            }

            .testimonial-quote {
                font-size: 2.5rem;
                display: none;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            .testimonial-card {
                padding: 20px;
            }

            .testimonial-author {
                gap: 10px;
            }

            .author-avatar {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .author-info h4 {
                font-size: 1rem;
            }

            .author-info p {
                font-size: 0.8rem;
            }

            .faq-question {
                padding: 16px;
            }

            .faq-question h3 {
                font-size: 1.1rem;
            }

            .faq-answer-content {
                padding: 0 16px 16px;
                font-size: 0.95rem;
            }
        }