 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #000;
            color: white;
        }

        /* Top banner */
        .top-banner {
            background-color: #000;
            text-align: center;
            padding: 8px 0;
            font-size: 14px;
            border-bottom: 1px solid #333;
        }

        /* Navbar */
        .navbar {
            background-color: #000;
            padding: 15px 0;
            position: relative;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 24px;
        }

        .logo::before {
            content: '';
            width: 40px;
            height: 30px;
            background: linear-gradient(45deg, #00ffff, #0066cc, #ffff00, #ff6600);
            margin-right: 10px;
            border-radius: 3px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu li a:hover {
            color: #00ffff;
        }

        .nav-menu li.active a {
            color: #00ffff;
        }

        .nav-menu li.active a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #00ffff;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            transition: left 0.3s ease;
            z-index: 1001;
            padding-top: 100px;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0 30px;
        }

        .mobile-menu ul li {
            margin: 30px 0;
        }

        .mobile-menu ul li a {
            color: white;
            text-decoration: none;
            font-size: 20px;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: color 0.3s;
        }

        .mobile-menu ul li a:hover {
            color: #00ffff;
        }

        .mobile-menu ul li.active a {
            color: #00ffff;
        }

        /* Mobile Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .cart-icon {
            position: relative;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ff6600;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 80vh;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            line-height: 1.1;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-description {
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 500px;
            opacity: 0.9;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
        }
         .belts-section {
            background-color: #ffffff;
            padding: 60px 20px;
        }
        
        .container {
            max-width: 100%;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5em;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 60px;
            letter-spacing: 1px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap:20px;
            margin-bottom: 80px;
        }
        
        .feature-card {
            text-align: center;
            padding: 40px 30px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2em;
            color: white;
        }
        
        .feature-icon.red {
            background-color: #e74c3c;
        }
        
        .feature-icon.orange {
            background-color: #f39c12;
        }
        
        .feature-icon.blue {
            background-color: #3498db;
        }
        
        .feature-icon.green {
            background-color: #27ae60;
        }
        
        .feature-title {
            font-size: 1.1em;
            font-weight: bold;
            margin-bottom: 20px;
            color: #2c3e50;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.3;
        }
        
        .feature-description {
            color: #666666;
            line-height: 1.6;
            font-size: 0.95em;
        }
        
        .cta-section {
            text-align: center;
            padding: 50px 0;
            background-color: #f8f9fa;
            border-radius: 10px;
        }
        
        .cta-title {
            font-size: 1.5em;
            margin-bottom: 10px;
            color: #2c3e50;
            font-style: italic;
        }
        
        .cta-subtitle {
            font-size: 1.1em;
            margin-bottom: 40px;
            color: #666666;
            font-style: italic;
        }
        
        .cta-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .cta-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .cta-card:hover {
            transform: translateY(-3px);
        }
        
        .cta-card h3 {
            font-size: 1.2em;
            margin-bottom: 15px;
            color: #2c3e50;
            font-weight: bold;
        }
        
        .cta-card p {
            color: #666666;
            margin-bottom: 25px;
            font-size: 0.95em;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.9em;
            color: white;
        }
        
        .cta-button.blue {
            background-color: #3498db;
        }
        
        .cta-button.orange {
            background-color: #f39c12;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .cta-button.blue:hover {
            background-color: #2980b9;
        }
        
        .cta-button.orange:hover {
            background-color: #e67e22;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2em;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .cta-cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
        }
        .safety-belts-section {
            background-color: #f8f8f8;
            padding: 80px 0;
            border-top: 3px solid #333;
            border-bottom: 3px solid #333;
        }

        .safety-belts-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .safety-belts-content {
            flex: 1;
            max-width: 500px;
        }

        .safety-belts-content h2 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #333;
            line-height: 1.1;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        .safety-belts-content p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .safety-belts-content p:first-of-type {
            margin-bottom: 20px;
        }

        .safety-belts-highlight {
            color: #333;
            font-weight: bold;
        }

        .safety-belts-image {
            flex: 1;
            max-width: 600px;
            position: relative;
        }

        .safety-belts-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .safety-belts-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .safety-belts-content h2 {
                font-size: 2.2rem;
            }

            .safety-belts-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .safety-belts-content h2 {
                font-size: 1.8rem;
            }

            .safety-belts-wrapper {
                padding: 0 15px;
            }
        }
         /* Primera sección - Coche */
        .car-hero-section {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            color: white;
            padding: 80px 0;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .car-hero-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .car-hero-image {
            flex: 1;
            position: relative;
        }

        .car-hero-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .car-hero-content {
            flex: 1;
            padding-left: 40px;
        }

        .car-hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        .car-hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 25px;
            opacity: 0.9;
            font-weight: 500;
        }

        .car-hero-description {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .car-hero-highlight {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.8;
            font-style: italic;
        }

        /* Segunda sección - Costura */
        .sewing-section {
            background: #f8f9fa;
            padding: 100px 0;
            position: relative;
        }

        .sewing-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .sewing-content {
            flex: 1;
            padding-right: 40px;
        }

        .sewing-title {
            font-size: 3rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .sewing-description {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .sewing-features {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .sewing-certification {
            display: flex;
            align-items: center;
            gap: 15px;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .cert-icon {
            width: 40px;
            height: 40px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .cert-text {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        .sewing-media {
            flex: 1;
            position: relative;
        }

        .sewing-video {
            width: 100%;
            height: 400px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .car-hero-wrapper,
            .sewing-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .car-hero-content {
                padding-left: 0;
            }

            .sewing-content {
                padding-right: 0;
            }

            .car-hero-title {
                font-size: 2.5rem;
            }

            .sewing-title {
                font-size: 2.2rem;
            }

            .car-hero-wrapper {
                flex-direction: column-reverse;
            }
        }
          /* Sección de Cinturones */
        .seccion-cinturones {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .cinturones-contenido {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 0 20px;
        }

        .cinturones-imagen {
            position: relative;
        }

        .cinturones-imagen img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .cinturones-texto {
            padding-left: 20px;
        }

        .cinturones-titulo {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .cinturones-descripcion {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .cinturones-descripcion-2 {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.8;
        }

        /* Sección de Reseñas */
        .seccion-resenas {
            background: white;
            padding: 80px 0;
            position: relative;
        }

        .resenas-contenido {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .resenas-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .resenas-calificacion {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .resenas-titulo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #333;
            text-transform: uppercase;
        }

        .estrellas {
            display: flex;
            gap: 2px;
            font-size: 2rem;
            color: #ffd700;
        }

        .resenas-info {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
        }

        .google-logo {
            width: 80px;
            height: auto;
        }

        /* Carrusel de Reseñas */
        .carrusel-resenas {
            position: relative;
            overflow: hidden;
            height: 200px;
        }

        .carrusel-pista {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .resena-card {
            min-width: 300px;
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin-right: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            border: 1px solid #e0e0e0;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .resena-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .resena-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #4285f4;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .resena-info h4 {
            font-size: 1rem;
            color: #333;
            margin-bottom: 2px;
        }

        .resena-fecha {
            font-size: 0.8rem;
            color: #999;
        }

        .resena-estrellas {
            display: flex;
            gap: 1px;
            color: #ffd700;
            font-size: 1rem;
        }

        .resena-texto {
            font-size: 0.9rem;
            line-height: 1.4;
            color: #555;
            flex-grow: 1;
        }

        .leer-mas {
            color: #4285f4;
            font-size: 0.8rem;
            text-decoration: none;
            align-self: flex-start;
        }

        /* Avatares con colores específicos */
        .avatar-batman { background: #333; }
        .avatar-raul { background: #4285f4; }
        .avatar-nissan { background: #ff4444; }
        .avatar-antonio { background: #34a853; }
        .avatar-kourtney { background: #4285f4; }
        .avatar-david { background: #ea4335; }

        /* Responsive */
        @media (max-width: 768px) {
            .cinturones-contenido {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .cinturones-texto {
                padding-left: 0;
            }

            .cinturones-titulo {
                font-size: 2.5rem;
            }

            .resenas-header {
                flex-direction: column;
                text-align: center;
            }

            .resenas-titulo {
                font-size: 2rem;
            }

            .resena-card {
                min-width: 280px;
            }
        }

        @media (max-width: 480px) {
            .cinturones-titulo {
                font-size: 2rem;
            }

            .resenas-titulo {
                font-size: 1.5rem;
            }

            .resena-card {
                min-width: 260px;
            }
        }
          /* Sección Cómo funciona el servicio */
        .bfc-service-section {
            background: white;
            padding: 30px 0;
            text-align: center;
        }

        .bfc-service-title {
            font-size: 48px;
            font-weight: bold;
            color: #333;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .bfc-service-subtitle {
            color: #28a745;
            font-size: 16px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .bfc-service-subtitle::before {
            content: "●";
            color: #28a745;
            font-size: 12px;
        }

        .bfc-service-steps {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .bfc-step {
            border: none;
            background: none;
            cursor: pointer;
            padding: 0;
            text-align: left;
            width: 100%;
        }

        .bfc-step-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 30px;
            font-size: 16px;
            font-weight: bold;
            color: white;
            transition: all 0.3s ease;
        }

        .bfc-step-1 .bfc-step-header { background: #4a90e2; }
        .bfc-step-2 .bfc-step-header { background: #f39c12; }
        .bfc-step-3 .bfc-step-header { background: #27ae60; }
        .bfc-step-4 .bfc-step-header { background: #e74c3c; }

        .bfc-step-plus {
            font-size: 24px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .bfc-step.active .bfc-step-plus {
            transform: rotate(45deg);
        }

        .bfc-step-content {
            background: white;
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            border-left: 4px solid #ddd;
            border-right: 4px solid #ddd;
        }

        .bfc-step-1.active .bfc-step-content { border-color: #4a90e2; }
        .bfc-step-2.active .bfc-step-content { border-color: #f39c12; }
        .bfc-step-3.active .bfc-step-content { border-color: #27ae60; }
        .bfc-step-4.active .bfc-step-content { border-color: #e74c3c; }

        .bfc-step.active .bfc-step-content {
            max-height: 300px;
            padding: 25px 30px;
        }

        .bfc-step-text {
            color: #333;
            line-height: 1.6;
            font-size: 15px;
        }

        .bfc-step-text a {
            color: #4a90e2;
            text-decoration: none;
        }

        .bfc-step-text a:hover {
            text-decoration: underline;
        }

        .bfc-green-button {
            background: #28a745;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 30px;
            transition: background 0.3s ease;
        }

        .bfc-green-button:hover {
            background: #218838;
        }

        /* Sección Distribuidor */
        .bfc-distributor-section {
            background: #000;
            color: white;
            padding: 60px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bfc-distributor-content {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            width: 100%;
            padding: 0 40px;
        }

        .bfc-distributor-info {
            flex: 1;
        }

        .bfc-distributor-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .bfc-distributor-subtitle {
            color: #999;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .bfc-distributor-text {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .bfc-contact-box {
            border: 2px solid #333;
            padding: 30px;
            text-align: center;
            margin-top: 30px;
        }

        .bfc-whatsapp-icon {
            font-size: 48px;
            color: #25D366;
            margin-bottom: 15px;
        }

        .bfc-phone-number {
            font-size: 24px;
            color: #25D366;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .bfc-contact-subtitle {
            color: #999;
            font-size: 14px;
        }

        .bfc-distributor-image {
            flex: 1;
        }

        .bfc-distributor-image img {
            width: 100%;
            height: auto;
            max-width: 500px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .bfc-service-title {
                font-size: 32px;
            }

            .bfc-service-steps {
                margin: 0 20px;
            }

            .bfc-distributor-content {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .bfc-distributor-title {
                font-size: 28px;
            }
        }
         /* FAQ Section */
        .faq-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }

        .faq-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .faq-title {
            text-align: center;
            font-size: 48px;
            font-weight: bold;
            color: #333;
            margin-bottom: 60px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid #ddd;
            background: white;
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: #f8f9fa;
        }

        .faq-question.active {
            color: #00a8cc;
        }

        .faq-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
            color: #666;
        }

        .faq-question.active .faq-arrow {
            transform: rotate(180deg);
            color: #00a8cc;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-answer.active {
            max-height: 300px;
            padding: 0 30px 25px 30px;
        }

        .faq-answer-content {
            padding-top: 10px;
            color: #666;
            line-height: 1.6;
            font-size: 14px;
        }

        .faq-answer-content strong {
            color: #333;
        }

        .faq-answer-content em {
            font-style: italic;
        }

        /* Footer Section */
        .footer-section {
            background-color: #1a1a1a;
            color: white;
            padding: 60px 0 40px 0;
        }

        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 60px;
            align-items: start;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-text {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .footer-contact {
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .bfc-text {
            color: white;
        }

        .belts-text {
            color: #00a8cc;
        }

        .for-cars-text {
            color: #ff6b35;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            transition: opacity 0.3s ease;
        }

        .social-icon:hover {
            opacity: 0.8;
        }

        .social-icon.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-icon.tiktok {
            background-color: #000;
        }

        .social-icon.youtube {
            background-color: #ff0000;
        }

        .payment-methods {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
        }

        .apple-pay {
            background-color: #000;
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            gap: 12px;
            text-align: right;
        }

        .footer-link {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #00a8cc;
        }

        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            
            .footer-right {
                text-align: center;
            }
        }