        /* ============================================
           PRINTMASTER - PROFESSIONAL PRINTING COMPANY
           Clean, Modern, Professional Style
           ============================================ */

        :root {
            /* Colors - Professional Teal/Cyan Palette */
            --cyan: #0891b2;
            --cyan-dark: #0e7490;
            --cyan-light: #22d3ee;
            --teal: #14b8a6;
            --navy: #0f172a;
            --navy-light: #1e293b;
            --slate: #475569;
            --gray: #94a3b8;
            --light: #f1f5f9;
            --lighter: #f8fafc;
            --white: #ffffff;
            --orange: #f97316;
            --yellow: #eab308;

            /* Gradients */
            --gradient-primary: linear-gradient(135deg, var(--cyan) 0%, var(--teal) 100%);
            --gradient-dark: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);

            /* Typography */
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;

            /* Spacing */
            --section-padding: 100px;
            --container-max: 1200px;

            /* Effects */
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 40px -10px rgba(8, 145, 178, 0.2);
            --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.08);

            /* Border Radius */
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--slate);
            background-color: var(--white);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        ul, ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: var(--section-padding) 0;
            position: relative;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--navy);
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
        h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }

        .section-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(8, 145, 178, 0.1);
            color: var(--cyan);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .section-header h2 {
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--slate);
            font-size: 1.125rem;
        }

        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.9375rem;
            border-radius: var(--radius);
            transition: all var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn svg {
            width: 18px;
            height: 18px;
            transition: transform var(--transition);
        }

        .btn:hover svg {
            transform: translateX(4px);
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(8, 145, 178, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--cyan);
            border: 2px solid var(--cyan);
        }

        .btn-secondary:hover {
            background: var(--cyan);
            color: var(--white);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 0;
            transition: all var(--transition);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 12px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
        }

        .navbar.scrolled .logo {
            color: var(--navy);
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: var(--gradient-primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--white);
            font-weight: 800;
        }

        .logo span {
            color: var(--cyan-light);
        }

        .navbar.scrolled .logo span {
            color: var(--cyan);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9375rem;
            position: relative;
            padding: 8px 0;
        }

        .navbar.scrolled .nav-link {
            color: var(--slate);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--cyan);
            transition: width var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--cyan-light);
        }

        .navbar.scrolled .nav-link:hover {
            color: var(--cyan);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .navbar.scrolled .menu-toggle span {
            background: var(--navy);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--gradient-dark);
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(8, 145, 178, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.1) 0%, transparent 40%);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            color: var(--white);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(8, 145, 178, 0.2);
            border: 1px solid rgba(8, 145, 178, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero h1 {
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .hero-description {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 36px;
            max-width: 500px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--cyan-light);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }

        .hero-visual {
            position: relative;
        }

        .hero-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 24px;
            transition: all var(--transition);
        }

        .hero-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.12);
        }

        .hero-card:first-child {
            grid-column: span 2;
        }

        .hero-card-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 1.5rem;
        }

        .hero-card h3 {
            color: var(--white);
            font-size: 1.125rem;
            margin-bottom: 8px;
        }

        .hero-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

        /* Services Section */
        .services {
            background: var(--lighter);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--white);
            padding: 32px 24px;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: all var(--transition);
            border: 1px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--cyan);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: rgba(8, 145, 178, 0.1);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--gradient-primary);
        }

        .service-card h3 {
            margin-bottom: 12px;
        }

        .service-card p {
            font-size: 0.9375rem;
            color: var(--gray);
        }

        .service-price {
            margin-top: 16px;
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--cyan);
        }

        .service-price span {
            font-size: 0.875rem;
            font-weight: 400;
            color: var(--gray);
        }

        /* Products Section */
        .products {
            background: var(--white);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .product-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--white);
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .product-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--orange);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .product-content {
            padding: 24px;
        }

        .product-category {
            font-size: 0.8125rem;
            color: var(--cyan);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
        }

        .product-card h3 {
            margin-bottom: 12px;
        }

        .product-card p {
            color: var(--gray);
            font-size: 0.9375rem;
            margin-bottom: 16px;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .product-feature {
            background: var(--light);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--slate);
        }

        .product-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .product-price {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
        }

        .product-price span {
            font-size: 0.875rem;
            font-weight: 400;
            color: var(--gray);
        }

        .product-btn {
            width: 44px;
            height: 44px;
            background: var(--gradient-primary);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all var(--transition);
        }

        .product-btn:hover {
            transform: scale(1.1);
        }

        .product-btn svg {
            width: 20px;
            height: 20px;
        }

        /* Features Section */
        .features {
            background: var(--gradient-dark);
            color: var(--white);
        }

        .features .section-badge {
            background: rgba(255, 255, 255, 0.1);
            color: var(--cyan-light);
        }

        .features .section-header h2,
        .features .section-header p {
            color: var(--white);
        }

        .features .section-header p {
            opacity: 0.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .feature-item {
            text-align: center;
            padding: 32px 20px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            transition: all var(--transition);
        }

        .feature-item:hover .feature-icon {
            background: var(--gradient-primary);
            transform: scale(1.1);
        }

        .feature-item h3 {
            color: var(--white);
            margin-bottom: 12px;
        }

        .feature-item p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9375rem;
        }

        /* Process Section */
        .process {
            background: var(--lighter);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 12.5%;
            width: 75%;
            height: 2px;
            background: var(--cyan);
            opacity: 0.3;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-number {
            width: 100px;
            height: 100px;
            background: var(--white);
            border: 3px solid var(--cyan);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: var(--cyan);
            position: relative;
            z-index: 1;
            transition: all var(--transition);
        }

        .process-step:hover .process-number {
            background: var(--gradient-primary);
            color: var(--white);
            transform: scale(1.1);
        }

        .process-step h3 {
            margin-bottom: 12px;
        }

        .process-step p {
            color: var(--gray);
            font-size: 0.9375rem;
        }

        /* CTA Section */
        .cta {
            background: var(--gradient-primary);
            color: var(--white);
            text-align: center;
            padding: 80px 0;
        }

        .cta h2 {
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.125rem;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta .btn-primary {
            background: var(--white);
            color: var(--cyan);
        }

        .cta .btn-primary:hover {
            background: var(--navy);
            color: var(--white);
        }

        /* Contact Section */
        .contact {
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .contact-card {
            background: var(--lighter);
            padding: 32px 24px;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: all var(--transition);
        }

        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .contact-icon {
            width: 64px;
            height: 64px;
            background: var(--gradient-primary);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .contact-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--white);
            fill: none;
            stroke-width: 1.5;
        }

        .contact-card h4 {
            margin-bottom: 8px;
        }

        .contact-card p {
            color: var(--gray);
            font-size: 0.9375rem;
        }

        .contact-card a {
            color: var(--cyan);
            font-weight: 600;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

        /* Footer */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 60px 0 24px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand p {
            color: var(--gray);
            margin: 16px 0 24px;
            line-height: 1.8;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }

        .footer-social a:hover {
            background: var(--cyan);
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: var(--white);
        }

        .footer-column h4 {
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray);
            font-size: 0.9375rem;
            transition: all var(--transition);
        }

        .footer-links a:hover {
            color: var(--cyan-light);
            padding-left: 6px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: var(--gray);
            font-size: 0.875rem;
        }

        .footer-bottom a {
            color: var(--cyan-light);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            :root {
                --section-padding: 80px;
            }

            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-description {
                margin: 0 auto 36px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps::before {
                display: none;
            }

            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 320px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                gap: 24px;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
                transition: right var(--transition);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu .nav-link {
                color: var(--slate);
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 60px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 24px;
            }

            .services-grid,
            .features-grid,
            .process-steps,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .products-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--cyan-dark) 100%);
    color: var(--white);
    padding: 200px 0 100px;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(34,211,238,0.08) 49%, rgba(34,211,238,0.08) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(34,211,238,0.08) 49%, rgba(34,211,238,0.08) 51%, transparent 52%);
    background-size: 30px 30px;
}
.page-banner > .container { position: relative; z-index: 2; }
.page-banner .section-label {
    color: var(--cyan-light);
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.25);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: inline-block;
    margin-bottom: 18px;
}
.page-banner h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.15;
}
.page-banner h1 span {
    background: linear-gradient(90deg, var(--cyan-light), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.page-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 700px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq { background: var(--lighter); }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid var(--light);
    border-left: 4px solid var(--cyan);
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: inherit;
}
.faq-question::after {
    content: '+';
    color: var(--cyan);
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 28px 22px; color: var(--slate); }
.faq-item.active .faq-answer { max-height: 400px; }
