        :root {
            --primary-yellow: #F2E349;
            --secondary-yellow: #F2E349;
            --accent-yellow: #F2E349;
            --warm-yellow: #F2E349;
            --golden-yellow: #F2E349;
            --orange-yellow:#F2E349;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            padding-top: 80px;
        }

        /* Header - Enhanced Yellow Theme */
        .header {
            background: linear-gradient(135deg, hsl(41, 100%, 95%) 100%, #000000 0%, #1a1a1a 0.3%, #2a1810 0%);
            padding: 10px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
            border-bottom: 2px solid var(--primary-yellow);
        }

        .img-23 {
            width: 8%;
            margin-right: 9px;
            height: 1%;
        }
  
       .img-23 img {
            height:25.7px;
            /* Adjust this value to make it shorter */
            object-fit: cover;
            /* Optional: Makes the image cover the area without distorting the aspect ratio */
        }
        .img-23-2 img {
            height:38px;
            /* Adjust this value to make it shorter */
           
            /* Optional: Makes the image cover the area without distorting the aspect ratio */
        }

  
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
            /* Use rem for better scalability */
            position: relative;
            min-height: 60px;
        }

        .logo {
            color: var(--accent-yellow);
            font-size: clamp(1.125rem, 4vw, 1.5rem);
            /* More readable font size range */
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            z-index: 1001;
            display: flex;
        }

        .logo img {
               /* Logo size: adjust as per design requirements */
          

            /* Maintain aspect ratio */
            margin-top: 9px;
        }

        .logo i {
            color: var(--primary-yellow);
            margin-right: 8x;
        }

        /* Navigation Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            /* More consistent gap using rem units */
        }

        .nav-menu a {
            color: black;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--accent-yellow);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-yellow), var(--accent-yellow));
            transition: width 0.3s ease;
        }

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


        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--accent-yellow);
            margin: 3px 0;
            transition: 0.3s;
            transform-origin: center;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            border-top: 2px solid var(--primary-yellow);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(251, 191, 36, 0.15);
        }

        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 20px;
            margin: 0;
        }

        .mobile-nav ul li {
            margin-bottom: 15px;
        }

        .mobile-nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(251, 191, 36, 0.3);
            transition: color 0.3s ease;
        }

        .mobile-nav ul li a:hover {
            color: var(--accent-yellow);
        }

        .mobile-nav .mobile-cta {
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
            color: #000000;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .mobile-nav .mobile-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
        }

        .cta-button {
            background: black;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            border-color: #000000;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
            background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--orange-yellow) 100%);
        }

        /* Hero Section - Enhanced Yellow */
        .hero {
            background: #F2E349;
            color: white;
            padding: 60px 0 40px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: clamp(28px, 6vw, 48px);
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 20px;
            text-align: center;
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: clamp(16px, 3vw, 18px);
            margin-bottom: 30px;
            opacity: 0.9;
            text-align: center;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: #1f1f1f;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: black;
            color: white;
            padding: 12px 24px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: clamp(14px, 2.5vw, 16px);
            white-space: nowrap;
            box-shadow: black;
            transition: all 0.3s ease;
            fill: #000000;


        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(251, 191, 36, 0.5);
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-yellow) 100%);
        }

        .btn-secondary {
            background: transparent;
            color: #000000;
            border: 2px solid #000000;
            padding: 10px 24px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(14px, 2.5vw, 16px);
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--accent-yellow);
            color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(253, 224, 71, 0.3);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat-item {
            text-align: center;
            padding: 20px 10px;
            background: rgba(255, 249, 234);
            border-radius: 15px;
            border: 1px solid rgba(251, 191, 36, 0.3);

        }

        .stat-number {
            font-size: clamp(24px, 5vw, 32px);
            font-weight: bold;
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #000000;
            font-size: clamp(12px, 2.5vw, 14px);
            opacity: 0.8;
            margin-top: 5px;

        }


        .hero-image {
            position: relative;
            order: -1;
        }

        .hero-image img {
            width: 100%;
            height: clamp(250px, 50vw, 400px);
            object-fit: cover;
            border-radius: 20px;
            border: 2px solid rgba(251, 191, 36, 0.3);
            height: 80%;
        }

        /* Enhanced Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Section Headers - Enhanced Yellow */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: clamp(24px, 5vw, 36px);
            font-weight: bold;
            color: #000000;
            margin-bottom: 40px;
            line-height: 1.3;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--accent-yellow) 100%);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: clamp(14px, 3vw, 18px);
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        /* Experience Section - Enhanced Yellow */
        .experience {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #fefce8 100%);
        }

        .experience-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        .experience-list {
            list-style: none;
        }

        .experience-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            border-left: 4px solid var(--primary-yellow);
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .experience-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
        }

        .experience-icon {
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
            color: #000000;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
        }

        .experience-text h3 {
            font-size: clamp(16px, 3vw, 18px);
            font-weight: 600;
            margin-bottom: 5px;
            color: #000000;
        }

        .experience-text p {
            color: #64748b;
            font-size: clamp(13px, 2.5vw, 14px);
            line-height: 1.5;
        }

        .experience-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 20px 15px;
            background: linear-gradient(135deg, white 0%, #fefce8 100%);
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.15);
            border: 2px solid rgba(251, 191, 36, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(251, 191, 36, 0.25);
        }

        .stat-card-number {
            font-size: clamp(20px, 4vw, 28px);
            font-weight: bold;
            background: linear-gradient(black);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }

        .stat-card-label {
            color: #64748b;
            font-size: clamp(11px, 2vw, 14px);
        }

        /* Services Section - Enhanced Yellow */
        .services {
            padding: 60px 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            padding: 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: linear-gradient(135deg, white 0%, #fffbeb 100%);
            border-radius: 20px;
            padding: 30px 25px;
            box-shadow: 0 10px 35px rgba(251, 191, 36, 0.15);
            border: 2px solid rgba(251, 191, 36, 0.2);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            min-height: auto;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.03) 0%, transparent 70%);
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(251, 191, 36, 0.25);
            border-color: var(--primary-yellow);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
            position: relative;
            z-index: 2;
        }

        .service-icon i {
            font-size: 1.8rem;
            color: #000000;
        }

        .service-title {
            font-size: clamp(18px, 4vw, 24px);
            font-weight: 700;
            color: #000000;
            text-align: center;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .service-description {
            color: #64748b;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 20px;
            flex-grow: 1;
            font-size: clamp(14px, 2.5vw, 16px);
            position: relative;
            z-index: 2;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
            position: relative;
            z-index: 2;
        }

        .service-features li {
            display: flex;
            align-items: center;
            padding: 8px 0;
            color: #64748b;
            font-size: clamp(13px, 2.5vw, 14px);
        }

        .service-features li i {
            color: var(--primary-yellow);
            margin-right: 12px;
            font-size: 12px;
            width: 16px;
        }

        .service-cta {
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
            color: #000000;
            text-decoration: none;
            padding: 14px 24px;
            border-radius: 12px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
            display: block;
            margin-top: auto;
            font-size: clamp(14px, 2.5vw, 16px);
            position: relative;
            z-index: 2;
        }

        .service-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-yellow) 100%);
        }

        /* Customer Service - Enhanced Yellow */
        .customer-service {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #fefce8 100%);
        }

        .service-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .service-item {
            text-align: center;
            background: linear-gradient(135deg, white 0%, #fffbeb 100%);
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.1);
            border: 2px solid rgba(251, 191, 36, 0.2);
            transition: all 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(251, 191, 36, 0.2);
            border-color: var(--primary-yellow);
        }

        .service-item-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: #000000;
            font-size: 22px;
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
        }

        .service-item h3 {
            color: #000000;
            margin-bottom: 10px;
            font-size: clamp(16px, 3vw, 18px);
        }

        .service-item p {
            font-size: clamp(13px, 2.5vw, 14px);
            line-height: 1.5;
            color: #64748b;
        }

        /* CTA Section - Enhanced Yellow */
        .cta-section {
            background: linear-gradient(135deg, #000000 0%, #1f1f1f 50%, #2a1810 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: clamp(24px, 5vw, 32px);
            margin-bottom: 15px;
            line-height: 1.3;
            background: linear-gradient(135deg, white 0%, var(--accent-yellow) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-content p {
            font-size: clamp(14px, 3vw, 16px);
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Products Section - Enhanced Yellow */
        .products {
            padding: 60px 0;
            background: white;
        }

        .product-image.loading {
            opacity: 0;
        }

        .product-image.loaded {
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            margin-top: 30px;
        }

        .product-card {
            background: linear-gradient(135deg, white 0%, #fffbeb 100%);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.1);
            overflow: hidden;
            max-width: 350px;
            min-width: 350px;
            margin: 0 auto;
            transition: all 0.4s ease;
            border: 2px solid rgba(251, 191, 36, 0.15);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(251, 191, 36, 0.2);
            border-color: var(--primary-yellow);
        }

        .product-image-container {
            position: relative;
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--warm-yellow) 0%, var(--secondary-yellow) 100%);
            overflow: hidden;
        }

        .promo-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            padding: 8px 14px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .fallback-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 48px;
            opacity: 0.9;
        }

        .product-content {
            padding: 25px;
        }

        .product-title {
            font-size: clamp(16px, 3vw, 20px);
            font-weight: 700;
            color: #1e40af;
            margin: 0 0 12px 0;
            line-height: 1.3;
        }

        .product-description {
            color: #6b7280;
            font-size: clamp(13px, 2.5vw, 15px);
            line-height: 1.6;
            margin: 0 0 15px 0;
        }

        .company-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(251, 191, 36, 0.3);
            flex-wrap: wrap;
            gap: 10px;
        }

        .company-name {
            color: #1e40af;
            font-weight: 600;
            font-size: clamp(13px, 2.5vw, 15px);
        }

        .rating-stars {
            display: flex;
            gap: 2px;
            align-items: center;
        }

        .star {
            color: var(--secondary-yellow);
            font-size: 14px;
        }

        .testimonial-section {
            background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
            border-left: 4px solid var(--primary-yellow);
            padding: 15px;
            border-radius: 0 10px 10px 0;
            margin-top: 12px;
        }

        .quote-number {
            color: #F2E349;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
            display: block;
        }

        .testimonial-text {
            color: #6b7280;
            font-style: italic;
            font-size: clamp(12px, 2.5vw, 14px);
            line-height: 1.5;
            margin: 0;
        }

        /* Trust Section - Enhanced Yellow */
        .trust-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #fefce8 100%);
            text-align: center;
        }

        .trust-icons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 0;
            margin: 0;
        }

        .trust-icon {
            background: linear-gradient(135deg, white 0%, #fffbeb 100%);
            border-radius: 15px;
            padding: 25px 15px;
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.1);
            border: 2px solid var(--primary-yellow);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            position: relative;
            overflow: hidden;
        }

        .trust-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .trust-icon:hover::before {
            left: 100%;
        }

        .trust-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.25);
            border-color: var(--secondary-yellow);
        }

        .trust-icon img {
            max-width: 100%;
            max-height: 60px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .trust-icon:hover img {
            filter: grayscale(0%) brightness(1.1);
            opacity: 1;
            transform: scale(1.05);
        }

        .trust-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin: 40px 0;
        }

        .trust-stat {
            text-align: center;
            padding: 20px 15px;
            background: linear-gradient(135deg, white 0%, #fffbeb 100%);
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.1);
            border: 2px solid rgba(251, 191, 36, 0.2);
            transition: all 0.3s ease;
        }

        .trust-stat:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(251, 191, 36, 0.2);
        }

        .trust-stat-number {
            font-size: clamp(20px, 4vw, 28px);
            font-weight: bold;
            background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--orange-yellow) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .trust-stat-label {
            color: #64748b;
            font-size: clamp(11px, 2vw, 14px);
            margin-top: 5px;
        }

        .trust-cta {
            margin-top: 30px;
            padding: 15px 30px;
            font-size: clamp(16px, 3vw, 18px);
        }

        /* Contact Section - Enhanced Yellow */
        .contact-section {
            padding: 60px 0;
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-top: 30px;
        }

        .contact-info {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .contact-item {
            text-align: center;
            padding: 25px 20px;
            background: linear-gradient(135deg, #f8fafc 0%, #fefce8 100%);
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.1);
            border: 2px solid rgba(251, 191, 36, 0.2);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(251, 191, 36, 0.2);
            border-color: var(--primary-yellow);
        }

        .contact-item-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: #000000;
            font-size: 20px;
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
        }

        .contact-item h3 {
            color: #000000;
            margin-bottom: 10px;
            font-size: clamp(16px, 3vw, 18px);
        }

        .contact-item p {
            color: #64748b;
            font-size: clamp(13px, 2.5vw, 14px);
            line-height: 1.5;
        }

        .contact-form {
            background: linear-gradient(135deg, #f8fafc 0%, #fefce8 100%);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.1);
            border: 2px solid rgba(251, 191, 36, 0.2);
        }

        .form-title {
            color: #000000;
            font-size: clamp(18px, 4vw, 22px);
            margin-bottom: 25px;
            text-align: center;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #374151;
            font-weight: 500;
            font-size: clamp(13px, 2.5vw, 14px);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px;
            border: 2px solid rgba(251, 191, 36, 0.2);
            border-radius: 10px;
            font-size: clamp(13px, 2.5vw, 14px);
            font-family: inherit;
            background: white;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .form-submit {
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
            color: #000000;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            font-size: clamp(14px, 2.5vw, 16px);
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-yellow) 100%);
        }

        /* Newsletter - Enhanced Yellow */
        .newsletter {
            background: linear-gradient(135deg, #000000 0%, #1f1f1f 50%, #2a1810 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
        }

        .newsletter h2 {
            font-size: clamp(20px, 4vw, 28px);
            margin-bottom: 15px;
            line-height: 1.3;
            background: linear-gradient(135deg, white 0%, var(--accent-yellow) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
        }

        .newsletter p {
            font-size: clamp(13px, 2.5vw, 16px);
            margin-bottom: 25px;
            opacity: 0.9;
            line-height: 1.5;
            position: relative;
            z-index: 2;
        }

        .newsletter-form {
            display: flex;
            max-width: 450px;
            margin: 0 auto;
            gap: 15px;
            flex-direction: column;
            position: relative;
            z-index: 2;
        }

        .newsletter-input {
            padding: 15px;
            border: 2px solid rgba(251, 191, 36, 0.3);
            border-radius: 10px;
            font-size: clamp(13px, 2.5vw, 14px);
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
        }

        .newsletter-submit {
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
            color: #000000;
            border: none;
            padding: 15px 24px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: clamp(13px, 2.5vw, 14px);
            margin-top: 10px;
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
            transition: all 0.3s ease;
        }

        .newsletter-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-yellow) 100%);
        }

        /* Footer - Enhanced Yellow */
        .footer {
            background: linear-gradient(135deg, hsl(41, 100%, 95%) 100%, #000000 0%, #1a1a1a 0.3%, #2a1810 0%);
            color: white;
            padding: 50px 0 20px;
            border-top: 3px solid var(--primary-yellow);
        }

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

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: clamp(16px, 3vw, 18px);
            color: var(--accent-yellow);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--accent-yellow) 100%);
        }

        .footer-description {
            color: #000000;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: clamp(13px, 2.5vw, 14px);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
            color: #000000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
        }

        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-yellow) 100%);
        }

        .footer-section ul {
            list-style: none;
        }

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

        .footer-section ul li a {
            color: #000000;
            text-decoration: none;
            font-size: clamp(12px, 2.5vw, 14px);
            line-height: 1.5;
            transition: color 0.3s ease;
            position: relative;
        }

        .footer-section ul li a::before {
            content: '→';
            color: var(--primary-yellow);
            margin-right: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-section ul li a:hover::before {
            opacity: 1;
        }

        .footer-section ul li a:hover {
            color: var(--accent-yellow);
            padding-left: 15px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(251, 191, 36, 0.3);
            padding-top: 25px;
            text-align: center;
            color: #cbd5e1;
            font-size: clamp(11px, 2vw, 14px);
            line-height: 1.5;
        }