body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f8f9fa;
        }

        .navbar {
            box-shadow: 0 2px 4px rgba(0,0,0,.1);
        }

        .hero-section {
            padding: 100px 0;
            background: linear-gradient(45deg, #EA580C, #262724);
            color: white;
            text-align: center;
        }
        .hero-section h1 {
            font-weight: 700;
            font-size: 3.5rem;
        }
        .hero-section p {
            font-size: 1.25rem;
            font-weight: 300;
            max-width: 700px;
            margin: 20px auto;
        }
        .cta-button {
            font-weight: 600;
            padding: 15px 30px;
            font-size: 1.2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .hero-image {
            max-width: 450px;
            margin-top: 40px;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }

        .feature-card {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        .feature-icon {
            font-size: 3.5rem;
            color: #F97316;
            margin-bottom: 20px;
        }
        .feature-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
        }

        .supported-stores {
            background-color: #ffffff;
        }
        
        .store-logo-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }

        .store-logo {
            font-size: 2.5rem;
            color: #6c757d;
            transition: color 0.3s ease;
        }
        
        .store-logo:hover {
            color: #343a40;
        }
        
        .store-logo .fab, .store-logo .fas {
            margin: 0 15px;
        }

        .final-cta-section {
            background-color: #343a40;
            color: white;
            text-align: center;
        }

        .footer {
            background-color: #212529;
            color: #adb5bd;
            padding: 30px 0;
            text-align: center;
        }
        .footer a {
            color: #ffffff;
        }
        .footer a:hover {
            color: #F97316;
            text-decoration: none;
        }