* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            font-display: swap;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }
        
        .w-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        /* Desktop-only section */
        .w-desktop-section {
            display: block;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .w-mobile-section {
            display: none;
        }
        
        @media (max-width: 768px) {
            .w-desktop-section {
                display: none;
            }
            
            .w-mobile-section {
                display: block;
                background: white;
                border-radius: 8px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                padding: 20px;
            }
        }
        
        .w-hero-section {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
        }
        
        .w-hero-section h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .rideover1 {
            color: white;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;

        }
        .popup {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;

        }

        .w-hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .w-cta-button {
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .w-cta-button:hover {
            background: #c0392b;
        }
        
        .w-content-section {
            padding: 40px;
        }
        
        .w-section-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .w-intro-text {
            font-size: 1.1rem;
            margin-bottom: 40px;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            color: #555;
        }
        
        .w-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .w-feature-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
            transition: transform 0.3s;
        }
        
        .w-feature-card:hover {
            transform: translateY(-5px);
        }
        
        .w-feature-card h3 {
            color: #2c3e50;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .w-feature-card p {
            color: #666;
            line-height: 1.7;
        }
        
        .w-equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .w-equipment-item {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            transition: border-color 0.3s;
        }
        
        .w-equipment-item:hover {
            border-color: #3498db;
        }
        
        .w-equipment-item h4 {
            color: #2c3e50;
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .w-equipment-item p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .w-process-section {
            background: #f8f9fa;
            padding: 50px 40px;
            margin: 40px 0;
        }
        
        .w-process-title {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .w-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .w-process-step {
            background: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            border: 2px solid #e9ecef;
        }
        
        .w-step-number {
            background: #3498db;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: bold;
        }
        
        .w-process-step h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .w-process-step p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .w-benefits-section {
            background: #2c3e50;
            color: white;
            padding: 50px 40px;
            text-align: center;
        }
        
        .w-benefits-title {
            font-size: 2rem;
            margin-bottom: 30px;
            font-weight: bold;
        }
        
        .w-benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
            list-style-type: none;
        }
        
        .w-benefit-item {
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
        }
        
        .w-benefit-item h4 {
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .w-quote-section {
            background: #e74c3c;
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        .w-quote-section h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .w-quote-section p {
            font-size: 1.1rem;
            margin-bottom: 25px;
        }
        
        .w-quote-button {
            background: white;
            color: #e74c3c;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .w-quote-button:hover {
            background: #f8f9fa;
        }
        
        /* Mobile styles */
        .w-mobile-hero {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 8px 8px 0 0;
        }
        
        .w-mobile-hero h1 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .w-mobile-hero p {
            font-size: 1rem;
            margin-bottom: 20px;
        }
        
        .w-mobile-content {
            padding: 20px;
        }
        
        .w-mobile-summary {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .w-mobile-summary h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .w-mobile-list {
            list-style: none;
            padding: 0;
        }
        
        .w-mobile-list li {
            padding: 8px 0;
            border-bottom: 1px solid #e9ecef;
            color: #555;
        }
        
        .w-mobile-list li:last-child {
            border-bottom: none;
        }
        
        .w-mobile-cta {
            background: #e74c3c;
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 0 0 8px 8px;
        }
        
        .w-mobile-cta h3 {
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .w-mobile-cta a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            background: rgba(255,255,255,0.2);
            padding: 10px 20px;
            border-radius: 5px;
            display: inline-block;
            margin-top: 10px;
        }