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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
            min-height: 100vh;
            line-height: 1.6;
            overflow-x: hidden;
            color: #4a5568;
        }

        /* Preloader Styles */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .preloader.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .preloader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .preloader-container {
            position: relative;
            width: 150px;
            height: 150px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        }

        .preloader-pill {
            position: absolute;
            width: 60px;
            height: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
            animation: pill-pulse 2s infinite, rotatePill 4s linear infinite;
        }

        .preloader-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            animation: particle-float 2s infinite;
        }

        .preloader-particle:nth-child(2) { 
            top: 20px; 
            left: 20px; 
            animation-delay: 0.2s; 
        }
        .preloader-particle:nth-child(3) { 
            top: 20px; 
            right: 20px; 
            animation-delay: 0.4s; 
        }
        .preloader-particle:nth-child(4) { 
            bottom: 20px; 
            left: 20px; 
            animation-delay: 0.6s; 
        }
        .preloader-particle:nth-child(5) { 
            bottom: 20px; 
            right: 20px; 
            animation-delay: 0.8s; 
        }

        .preloader-text {
            color: white;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
            animation: text-glow 2s infinite alternate;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .preloader-percentage {
            color: white;
            font-size: 18px;
            font-weight: 500;
        }

        @keyframes pill-pulse {
            0%, 100% { 
                transform: scale(1); 
                opacity: 1; 
            }
            50% { 
                transform: scale(1.1); 
                opacity: 0.8; 
            }
        }

        @keyframes rotatePill {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes particle-float {
            0% { 
                transform: translate(0, 0) scale(1); 
                opacity: 0.8; 
            }
            50% { 
                transform: translate(10px, -10px) scale(1.5); 
                opacity: 0.3; 
            }
            100% { 
                transform: translate(0, 0) scale(1); 
                opacity: 0.8; 
            }
        }

        @keyframes text-glow {
            from { 
                text-shadow: 0 0 10px rgba(255,255,255,0.5); 
            }
            to { 
                text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6); 
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #0d9488;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo img {
            height: 40px;
            width: auto;
            border-radius: 50%;
            margin-right: 8px;
            display: inline-block;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        .nav a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav a:hover {
            color: #0d9488;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #0d9488;
            transition: width 0.3s ease;
        }

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

        .header-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .search-icon, .cart-icon {
            font-size: 20px;
            color: #4a5568;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 8px;
            border-radius: 50%;
        }

        .search-icon:hover, .cart-icon:hover {
            color: #0d9488;
            background: rgba(13, 148, 136, 0.1);
        }

        .cart-container {
            position: relative;
        }

        .cart-badge {
            background: #e53e3e;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -5px;
            right: -5px;
            transition: transform 0.3s ease;
        }

        .cart-container:hover .cart-badge {
            transform: scale(1.2);
        }

        .sign-in-btn {
            background: #0d9488;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
        }

        .sign-in-btn:hover {
            background: #0f766e;
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: #4a5568;
        }

        /* Enhanced Hero Section Styles */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg, 
                rgba(13, 148, 136, 0.85) 0%, 
                rgba(20, 184, 166, 0.75) 50%,
                rgba(13, 148, 136, 0.85) 100%
            );
            z-index: 2;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .carousel-dots {
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 5;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero-content {
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            max-width: 800px;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            white-space: normal;
            overflow: hidden;
            font-family: 'Segoe UI', sans-serif;
        }

        .hero-title span {
            display: inline-block;
            opacity: 0;
            animation: typeIn 0.1s forwards;
        }

        .highlight {
            color: #f97316;
            text-shadow: 0 2px 10px rgba(249, 115, 22, 0.5);
        }

        .hero-description {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 1px 5px rgba(0,0,0,0.2);
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .hero-buttons {
            animation: slideInLeft 1s ease-out 0.4s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #0d9488;
            border: 2px solid #0d9488;
            padding: 14px 30px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #0d9488;
            color: white;
            transform: translateY(-3px);
        }

        .trust-info {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #4a5568;
            font-size: 16px;
        }

        .trust-info strong {
            color: #0d9488;
            font-weight: 700;
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out 0.6s both;
        }

        .pills-container {
            position: relative;
            height: 300px;
            margin-bottom: 2rem;
        }

        .pill {
            position: absolute;
            width: 40px;
            height: 20px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            border-radius: 10px;
            animation: float 3s ease-in-out infinite;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
        }

        .pill:nth-child(1) {
            top: 10%;
            left: 20%;
            animation-delay: 0s;
        }

        .pill:nth-child(2) {
            top: 30%;
            right: 10%;
            animation-delay: 0.5s;
        }

        .pill:nth-child(3) {
            top: 60%;
            left: 10%;
            animation-delay: 1s;
        }

        .pill:nth-child(4) {
            bottom: 20%;
            right: 20%;
            animation-delay: 1.5s;
        }

        .pill:nth-child(5) {
            top: 50%;
            left: 50%;
            animation-delay: 2s;
        }

        .feature-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
        }

        .feature-card-icon {
            font-size: 2rem;
            min-width: 60px;
            text-align: center;
            color: #f97316;
        }

        .feature-text h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 1px 5px rgba(0,0,0,0.2);
        }

        .feature-text p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .feature-cards-modern {
            position: absolute;
            top: 50%;
            left: 60%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 2;
        }

        .feature-card-modern {
            display: flex;
            align-items: center;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
            padding: 18px 28px;
            min-width: 320px;
            gap: 18px;
        }

        .feature-icon-modern {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 1.7rem;
            margin-right: 8px;
        }

        .feature-card-modern h4 {
            margin: 0 0 4px 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .feature-card-modern p {
            margin: 0;
            font-size: 0.97rem;
            color: #555;
        }

        @media (max-width: 900px) {
            .feature-cards-modern {
                position: static;
                transform: none;
                left: unset;
                top: unset;
                margin-top: 24px;
                align-items: stretch;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(120deg);
            }
            66% {
                transform: translateY(10px) rotate(240deg);
            }
        }

        @keyframes typeIn {
            to {
                opacity: 1;
            }
        }

        /* About Section */
        .about-section {
            padding: 80px 40px;
            background: white;
            margin-top: 0;
            position: relative;
            z-index: 2;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
        }

        .about-header {
            text-align: center;
            padding: 50px 40px 30px;
        }

        .about-title {
            font-size: 40px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .title-underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0d9488 0%, #14b8a6 100%);
            margin: 0 auto;
            border-radius: 2px;
        }

        .about-content {
            display: flex;
            align-items: center;
            padding: 40px;
            gap: 50px;
        }

        .content-left {
            flex: 1;
        }

        .mission-text {
            font-size: 18px;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .mission-description {
            font-size: 15px;
            color: #718096;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: #f7fafc;
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .feature-icon:hover {
            transform: scale(1.1);
        }

        .feature-content h4 {
            font-size: 16px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 6px;
        }

        .feature-content p {
            font-size: 13px;
            color: #718096;
            line-height: 1.6;
        }

        .content-right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-container {
            position: relative;
            width: 500px;
            height: 490px;
            background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(13, 148, 136, 0.2);
            transition: transform 0.3s ease;
        }

        .image-container:hover {
            transform: translateY(-5px);
        }

        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 20px;
        }

        /* Products Section */
        .products-section {
            padding: 80px 40px;
            background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
        }

        .products-section h1 {
            color: #2d3748;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .products-section p {
            color: #718096;
            font-size: 16px;
            margin-bottom: 40px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 6px 25px rgba(0,0,0,0.1);
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .product-image-placeholder {
            width: 100%;
            height: 140px;
            background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 36px;
            color: #0d9488;
            position: relative;
            transition: transform 0.3s ease;
        }

        .product-image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .product-image-placeholder:hover {
            transform: scale(1.05);
        }

        .product-card h3 {
            margin: 12px 0;
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
        }

        .product-card .description {
            color: #718096;
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .product-card .btn {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            margin-top: 8px;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
        }

        .product-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
        }

        .promo {
            margin-top: 30px;
            font-size: 15px;
            color: #0d9488;
            background: white;
            padding: 15px 25px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(13, 148, 136, 0.1);
            display: inline-block;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .promo:hover {
            transform: scale(1.05);
        }

        /* Services Section */
        .services-section {
            padding: 80px 40px;
            background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
        }

        .services-section h1 {
            color: #2d3748;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
        }

        .services-section p {
            color: #718096;
            font-size: 16px;
            margin-bottom: 40px;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 36px;
            color: #0d9488;
            margin-bottom: 15px;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
        }

        .service-card p {
            color: #718096;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .learn-more {
            display: inline-block;
            color: #0d9488;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .learn-more:hover {
            color: #0f766e;
        }

        .cta-section {
            background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 300px;
        }

        .cta-section h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 16px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 24px;
            background: white;
            color: #0d9488;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #f0f4f8;
            transform: translateY(-2px);
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 40px;
            background: white;
            text-align: center;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-title {
            font-size: 32px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .testimonial-card {
            background: #f7fafc;
            border-radius: 15px;
            padding: 25px;
            text-align: left;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .testimonial-card.active {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-card p {
            font-size: 16px;
            color: #4a5568;
            margin-bottom: 15px;
            font-style: italic;
        }

        .testimonial-author {
            font-size: 14px;
            color: #718096;
            font-weight: 600;
        }

        .why-choose-section {
            padding: 40px 0;
            background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
            text-align: center;
        }

        .why-choose-title {
            font-size: 32px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 30px;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .why-choose-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .why-choose-card.active {
            opacity: 1;
            transform: translateY(0);
        }

        .why-choose-card i {
            font-size: 36px;
            color: #0d9488;
            margin-bottom: 15px;
        }

        .why-choose-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
        }

        .why-choose-card p {
            font-size: 14px;
            color: #718096;
        }

        .impact-section {
            padding: 40px 0;
            background: white;
            text-align: center;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .impact-card {
            background: #f7fafc;
            border-radius: 15px;
            padding: 20px;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .impact-card.active {
            opacity: 1;
            transform: translateY(0);
        }

        .impact-card strong {
            font-size: 24px;
            color: #0d9488;
            font-weight: 700;
        }

        .impact-card p {
            font-size: 14px;
            color: #718096;
        }

        .count {
            transition: all 2s ease;
        }

        /* Rewards Section */
        .rewards-section {
            padding: 40px;
            background: #005f73;
            color: white;
            text-align: center;
            margin: 0 auto;
            max-width: 1200px;
            border-radius: 15px;
            margin-top: 40px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .rewards-section.active {
            opacity: 1;
            transform: translateY(0);
        }

        .rewards-section h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .rewards-section p {
            font-size: 16px;
            margin-bottom: 20px;
            color: #d9e6f2;
        }

        .rewards-input {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .rewards-input input {
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            font-size: 14px;
            width: 250px;
        }

        .rewards-btn {
            background: #ffd60a;
            color: #005f73;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .rewards-btn:hover {
            background: #e6c200;
        }

        .rewards-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .benefit-item {
            font-size: 14px;
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .benefit-item.active {
            opacity: 1;
            transform: translateX(0);
        }

        .rewards-links {
            display: flex;
            justify-content: space-between;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 20px;
        }

        .rewards-links div {
            flex: 1;
            text-align: left;
        }

        .rewards-links a {
            color: #ffd60a;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .rewards-links a:hover {
            color: #e6c200;
        }

        /* Footer Section */
        .footer {
            background-color: #001f3f;
            color: #c9d6e4;
            padding: 60px 20px 20px;
            font-size: 14px;
            line-height: 1.8;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 40px;
            margin-bottom: 20px;
        }

        .footer-about, .footer-links, .footer-services, .footer-contact {
            padding: 10px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }

        .footer-logo img {
            display: inline-block;
            margin-right: 10px;
        }

        .footer-about p {
            margin-bottom: 15px;
        }

        .social-icons a {
            color: #c9d6e4;
            font-size: 20px;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #14b8a6;
        }

        .footer h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

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

        .footer ul a {
            color: #c9d6e4;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul a:hover {
            color: #14b8a6;
        }

        .footer-contact p {
            margin-bottom: 10px;
        }

        .footer-contact i {
            margin-right: 10px;
            color: #14b8a6;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding-top: 20px;
            font-size: 12px;
        }

        .footer-payments img {
            height: 20px;
            margin-left: 10px;
        }

        .footer-legal a {
            margin-left: 20px;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #14b8a6;
        }

        /* Mobile Sidebar Navigation */
        @media (max-width: 768px) {
  .nav {
    display: flex;
    flex-direction: column;
    width: 260px;
    background: rgba(255,255,255,0.7); /* transparent white */
    position: fixed;
    top: 0;
    left: -260px;
    height: 100vh;
    padding: 40px 20px 20px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.08);
    z-index: 200;
    transition: left 0.3s cubic-bezier(.4,0,.2,1);
  }
  .nav.active {
    left: 0;
  }
  .nav a {
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid #f0f0f0;
  }
  .menu-toggle {
    display: block;
    z-index: 210;
    position: relative;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(44, 62, 80, 0.35);
    z-index: 199;
    transition: opacity 0.3s;
    opacity: 0;
  }
  .nav.active ~ .nav-overlay {
    display: block;
    opacity: 1;
  }
}

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                padding: 50px 0 100px;
            }

            .hero-content-wrapper {
                padding: 0 30px;
                gap: 30px;
            }

            .hero-title {
                font-size: 36px;
            }

            .pills-container {
                width: 350px;
                height: 280px;
            }

            .feature-cards {
                right: -40px;
                top: 40px;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
                flex-wrap: wrap;
            }

            .nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: white;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }

            .nav.active {
                display: flex;
            }

            .nav a {
                padding: 10px 0;
                font-size: 18px;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                padding: 40px 0 100px;
            }

            .hero-content-wrapper {
                flex-direction: column;
                padding: 0 20px;
                text-align: center;
                gap: 30px;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-description {
                font-size: 16px;
            }

            .pills-container {
                width: 100%;
                max-width: 300px;
                height: 240px;
                margin: 0 auto;
            }

            .feature-cards {
                position: static;
                margin-top: 20px;
                width: 100%;
            }

            .feature-card {
                margin: 0 auto;
                width: 90%;
            }

            .about-content {
                flex-direction: column;
                padding: 30px 20px;
                gap: 40px;
            }

            .about-header {
                padding: 40px 20px 20px;
                text-align: left;
            }

            .about-title {
                font-size: 28px;
            }

            .image-container {
                width: 100%;
                max-width: 300px;
                height: 280px;
            }

            .mission-text {
                font-size: 16px;
            }

            .products-section {
                padding: 60px 20px;
            }

            .products-section h1 {
                font-size: 28px;
                text-align: left;
            }

            .products-section p {
                font-size: 14px;
                text-align: left;
            }

            .product-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .services-section {
                padding: 60px 20px;
            }

            .services-section h1 {
                font-size: 28px;
                text-align: left;
            }

            .services-section p {
                font-size: 14px;
                text-align: left;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .cta-section {
                padding: 30px;
                min-height: 250px;
                text-align: left;
            }

            .cta-section h2 {
                font-size: 24px;
            }

            .cta-section p {
                font-size: 14px;
            }

            .cta-button {
                padding: 10px 20px;
                font-size: 14px;
            }

            .testimonials-section {
                padding: 60px 20px;
            }

            .testimonials-title {
                font-size: 28px;
                text-align: left;
            }

            .testimonials-subtitle {
                font-size: 16px;
                text-align: left;
            }

            .why-choose-grid, .impact-grid {
                padding: 0 20px;
            }

            .rewards-section {
                padding: 30px;
                text-align: left;
            }

            .rewards-input {
                flex-direction: column;
                gap: 15px;
            }

            .rewards-input input {
                width: 100%;
            }

            .rewards-links {
                flex-direction: column;
                gap: 15px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-bottom, .footer-about, .footer-links, .footer-services, .footer-contact {
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 10px 15px;
            }

            .logo {
                font-size: 20px;
            }

            .hero {
                padding: 30px 15px 80px;
            }

            .hero-title {
                font-size: 28px;
            }

            .hero-description {
                font-size: 14px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn-primary, .btn-secondary {
                padding: 12px 24px;
                font-size: 14px;
            }

            .pills-container {
                width: 100%;
                max-width: 280px;
                height: 220px;
            }

            .feature-cards {
                width: 100%;
            }

            .feature-card {
                width: 100%;
                margin: 0 auto;
            }

            .about-title {
                font-size: 24px;
            }

            .mission-text {
                font-size: 15px;
            }

            .mission-description {
                font-size: 14px;
            }

            .product-card {
                padding: 20px;
            }

            .product-image-placeholder {
                height: 120px;
            }

            .product-card h3 {
                font-size: 16px;
            }

            .product-card .description {
                font-size: 12px;
            }

            .services-section h1 {
                font-size: 24px;
            }

            .service-card {
                padding: 20px;
            }

            .service-icon {
                font-size: 32px;
            }

            .service-card h3 {
                font-size: 16px;
            }

            .service-card p {
                font-size: 13px;
            }

            .cta-section h2 {
                font-size: 20px;
            }

            .cta-section p {
                font-size: 13px;
            }

            .cta-button {
                padding: 10px 20px;
                font-size: 14px;
            }

            .testimonials-title {
                font-size: 24px;
            }

            .testimonials-subtitle {
                font-size: 14px;
            }

            .why-choose-title {
                font-size: 24px;
            }

            .why-choose-card, .impact-card {
                padding: 15px;
            }

            .why-choose-card i {
                font-size: 30px;
            }

            .why-choose-card h3 {
                font-size: 16px;
            }

            .why-choose-card p, .impact-card p {
                font-size: 12px;
            }

            .impact-card strong {
                font-size: 20px;
            }

            .rewards-section h2 {
                font-size: 24px;
            }

            .rewards-section p {
                font-size: 14px;
            }

            .rewards-btn {
                width: 100%;
            }
        }

        /* Animation Styles */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn { 
            from { transform: translateX(-20px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }