        .brands-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .brands-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(37, 211, 102, 0.05);
            border-radius: 50%;
            top: -150px;
            left: -150px;
            z-index: 0;
        }

        .brands-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(18, 140, 126, 0.05);
            border-radius: 50%;
            bottom: -100px;
            right: -100px;
            z-index: 0;
        }

        /* Title */
        .brands-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c7744;
            position: relative;
            z-index: 2;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Swiper container */
        .brands-swiper {
            padding: 20px 10px 60px;
            overflow: hidden;
        }

        /* Brand Card */
        .brand-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            height: 200px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .brand-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }

        .brand-logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            height: 80%;
            transition: all 0.3s ease;
        }

        .brand-logo {
            max-width: 90%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .brand-card:hover .brand-logo {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        /* Brand overlay on hover */
        .brand-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(44, 119, 68, 0.9), transparent);
            color: white;
            padding: 20px 15px 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            text-align: left;
        }

        .brand-card:hover .brand-overlay {
            transform: translateY(0);
        }

        .brand-overlay h3 {
            font-size: 1.1rem;
            margin: 0 0 5px 0;
            font-weight: 600;
        }

        .brand-overlay p {
            font-size: 0.85rem;
            margin: 0;
            opacity: 0.9;
        }

        /* Pagination */
        .swiper-pagination {
            bottom: 20px;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #cbd5e1;
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: #25D366;
        }

        /* CTA section */
        .brands-cta {
            margin-top: 20px;
            padding: 30px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .brands-cta p {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 20px;
        }

        .brands-cta .cta-btn {
            display: inline-block;
            background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 14px 30px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
        }

        .brands-cta .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .brands-swiper {
                padding: 20px 5px 60px;
            }
            
            .brand-card {
                height: 180px;
                padding: 25px;
            }
            
            .brand-logo {
                width: 60%;
            }
        }

        @media (max-width: 768px) {
            .brands-section {
                padding: 40px 15px;
            }
            
            .brands-section h2 {
                font-size: 2rem;
            }
            
            .brands-swiper {
                padding: 10px 0px 10px;
            }
            
            .brands-cta {
                padding: 20px;
            }
            
            .brands-cta p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .brands-section h2 {
                font-size: 1.75rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .brand-card {
                height: 120px;
            }
        }

        .faq-container {
            width: 84%;
            background: rgba(255, 255, 255, 0);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 40px;
            margin: 60px auto;
        }

        .faq-container h2 {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #2c3e50;
            position: relative;
        }

        .faq-container h2:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, #2ecc71, #1abc9c);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .accordion-item {
            border: 1px solid #eaeaea;
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #fff;
        }

        .accordion-item:hover {
            border-color: #c8e6c9;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .accordion-header {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            color: #2c3e50;
            transition: all 0.2s ease;
        }

        .accordion-header:hover {
            background: #f9f9f9;
        }

        .accordion-icon {
            font-size: 18px;
            transition: all 0.3s ease;
            color: #7f8c8d;
            min-width: 24px;
            text-align: right;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            background: #fff;
            color: #555;
            font-size: 16px;
            line-height: 1.6;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .accordion-item.active {
            border-color: #2ecc71;
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.1);
        }

        .accordion-item.active .accordion-header {
            background: #f1f8f4;
            color: #27ae60;
        }

        .accordion-item.active .accordion-content {
            max-height: 200px;
            padding: 0 25px 20px;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
            color: #27ae60;
        }

        @media (max-width: 768px) {
            .faq-container {
                padding: 16px 18px;
                width: 96%;
            }
            
            .accordion-header {
                padding: 16px 20px;
                font-size: 16px;
            }
            
            .accordion-content {
                padding: 0 20px;
                font-size: 15px;
            }
            
            .accordion-item.active .accordion-content {
                padding: 0 20px 16px;
            }
        }

        .testimonial-section {
            max-width: 1200px;
            padding: 60px 20px;
            text-align: center;
            width: 100%;
            margin: 0 auto;
        }

        .testimonial-section h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 50px;
            color: #2d5a27;
            position: relative;
            display: inline-block;
        }

        .testimonial-section h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #4CAF50, #8BC34A);
            border-radius: 2px;
        }

        .testimonial-container {
            position: relative;
            padding: 30px 0;
        }

        .swiper {
            width: 100%;
            padding: 40px 10px;
        }

        .testimonial-box {
            border: 2px solid #4CAF50;
            border-radius: 16px;
            padding: 30px;
            text-align: left;
            background: #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            max-width: 400px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .testimonial-box:before {
            content: '"';
            position: absolute;
            top: 15px;
            left: 20px;
            font-size: 5rem;
            color: #4CAF50;
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4CAF50, #8BC34A);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .testimonial-box h3 {
            margin: 0 0 5px;
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d5a27;
        }

        .testimonial-role {
            color: #6b6b6b;
            font-size: 0.9rem;
        }

        .testimonial-box p {
            margin: 0;
            line-height: 1.7;
            color: #444;
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }

        .rating {
            margin-top: 20px;
            color: #FFC107;
            font-size: 1.2rem;
        }

        .swiper-pagination {
            position: relative;
            margin-top: 30px;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #4CAF50;
            opacity: 0.4;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
        }

        .swiper-button-next, .swiper-button-prev {
            color: #4CAF50;
            background: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: #4CAF50;
            color: white;
        }

        @media (max-width: 768px) {
            .testimonial-section h2 {
                font-size: 2.2rem;
            }
            
            .swiper-button-next, .swiper-button-prev {
                display: none;
            }
        }

         .opening-section {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 60px 50px;
            max-width: 1200px;
            width: 94%;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
            margin: 0 auto;
            margin-bottom: 40px
        }
        
        .opening-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
            opacity: 0.3;
            z-index: 0;
            animation: pulse 8s ease-in-out infinite;
        }
        
        .opening-text {
            flex: 1;
            padding-right: 40px;
            position: relative;
            z-index: 1;
        }
        
        .opening-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-light);
            color: var(--primary-dark);
            border-radius: 100px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInUp 0.6s ease 0.3s forwards;
        }
        
        .opening-text h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--text-dark);
            line-height: 1.2;
            font-weight: 700;
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInUp 0.6s ease 0.4s forwards;
        }
        
        .opening-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-medium);
            margin-bottom: 30px;
            max-width: 90%;
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInUp 0.6s ease 0.5s forwards;
        }
        
        .opening-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .opening-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            background: #f8fafc;
            padding: 6px 12px;
            border-radius: 6px;
            opacity: 0;
            transform: translateY(10px);
        }
        
        .opening-feature:nth-child(1) {
            animation: fadeInUp 0.6s ease 0.6s forwards;
        }
        
        .opening-feature:nth-child(2) {
            animation: fadeInUp 0.6s ease 0.7s forwards;
        }
        
        .opening-feature:nth-child(3) {
            animation: fadeInUp 0.6s ease 0.8s forwards;
        }
        
        .opening-feature i {
            color: var(--primary);
        }
        
        .opening-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: white;
            font-weight: 600;
            padding: 16px 32px;
            border: none;
            border-radius: 100px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.3), 0 2px 4px -2px rgba(34, 197, 94, 0.3);
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInUp 0.6s ease 0.9s forwards;
        }
        
        .opening-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.4), 0 4px 6px -4px rgba(34, 197, 94, 0.4);
        }
        
        .opening-btn-outline {
            background: transparent;
            border: 1px solid #e5e7eb;
            color: var(--text-medium);
            margin-left: 15px;
            box-shadow: none;
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInUp 0.6s ease 1s forwards;
        }
        
        .opening-btn-outline:hover {
            background: #f8fafc;
            border-color: #d1d5db;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        .opening-image {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateX(20px);
            animation: fadeInRight 0.8s ease 0.5s forwards;
        }
        
        .opening-image img {
            max-width: 90%;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
            transform: perspective(800px) rotateY(-5deg);
            transition: transform 0.5s ease;
            border-radius: 12px;
        }
        
        .opening-image img:hover {
            transform: perspective(800px) rotateY(0);
        }
        
        .opening-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e5e7eb;
        }
        
        .opening-stat-item {
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(10px);
        }
        
        .opening-stat-item:nth-child(1) {
            animation: fadeInUp 0.6s ease 1.1s forwards;
        }
        
        .opening-stat-item:nth-child(2) {
            animation: fadeInUp 0.6s ease 1.2s forwards;
        }
        
        .opening-stat-item:nth-child(3) {
            animation: fadeInUp 0.6s ease 1.3s forwards;
        }
        
        .opening-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
        }
        
        .opening-stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.2;
            }
            100% {
                transform: scale(1);
                opacity: 0.3;
            }
        }
        
        @media (max-width: 992px) {
            .opening-section {
                flex-direction: column;
                text-align: center;
                padding: 40px 30px;
            }
            
            .opening-text {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .opening-text p {
                max-width: 100%;
            }
            
            .opening-features {
                justify-content: center;
            }
            
            .opening-stats {
                justify-content: center;
            }
            
            .opening-image {
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInUp 0.8s ease 0.5s forwards;
            }
        }
        
        @media (max-width: 576px) {
            .opening-text h1 {
                font-size: 2rem;
            }
            
            .opening-btn-container {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .opening-btn-outline {
                margin-left: 0;
            }
            
            .opening-stats {
                flex-direction: column;
                gap: 20px;
            }
        }