        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        ul {
            margin-left: 20px;
        }

        body {
            background-color: #fff9e6;
            color: #333;
            line-height: 1.6;
            padding-top: 40px;
            /* Added to prevent content from being hidden behind promo banner */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container-main {
            margin-top: 180px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 10;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 28px;
            font-weight: 800;
            color: #333;
            margin-left: 10px;
        }

        .logo-icon {
            font-size: 32px;
            color: #333;
        }

        /* Promo Banner - Fixed positioning */
        .promo-banner {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            text-align: center;
            padding: 10px;
            font-weight: 600;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        /* Hero Section with Overlay */
        .hero {
            position: relative;
            min-height: 600px;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
                url('../images/porterr_showcase.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Fallback for hero image */
        .hero-image::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
            opacity: 0.3;
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
        }

        .hero-content h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
        }

        .pricing {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
        }

        .original-price {
            font-size: 1.8rem;
            text-decoration: line-through;
            color: #ccc;
            margin-bottom: 5px;
        }

        .price {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .discount-badge {
            background-color: #e74c3c;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            margin-top: 10px;
            font-size: 1.2rem;
        }

        /* Image Gallery */
        .gallery-section {
            margin: 60px 0;
        }

        .gallery-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .gallery-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .gallery-slide {
            min-width: 100%;
        }

        .gallery-slide img {
            width: 100%;
            display: block;
            height: 400px;
            object-fit: cover;
        }

        .gallery-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            background: #ccc;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .gallery-dot.active {
            background: #ffc107;
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 15px;
            cursor: pointer;
            font-size: 24px;
            transition: background 0.3s;
        }

        .gallery-nav:hover {
            background: rgba(0, 0, 0, 0.7);
        }

        .gallery-prev {
            left: 0;
            border-radius: 0 12px 12px 0;
        }

        .gallery-next {
            right: 0;
            border-radius: 12px 0 0 12px;
        }

        /* Combined Funktioner & Specifikationer Section */
        .features-specs-section {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .section-tabs {
            display: flex;
            border-bottom: 2px solid #eee;
            margin-bottom: 25px;
        }

        .tab-btn {
            background: none;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: 600;
            color: #777;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            margin-right: 5px;
            border-radius: 5px 5px 0 0;
        }

        .tab-btn.active {
            color: #ffb700;
            background-color: #fff9e6;
        }

        .tab-btn:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #ffb700;
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .tab-btn.active:after {
            transform: scaleX(1);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .features {
            list-style-type: none;
            margin: 20px 0;
            padding: 0;
        }

        .features li {
            padding: 12px 0;
            border-bottom: 1px dashed #ddd;
            display: flex;
            align-items: center;
        }

        .features i {
            color: #ffc107;
            margin-right: 10px;
            font-size: 18px;
        }

        /* Specifications Table */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .spec-table th,
        .spec-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .spec-table th {
            background-color: #fff9e6;
            font-weight: 600;
        }

        .spec-table tr:last-child td {
            border-bottom: none;
        }

        .spec-table tr:hover {
            background-color: #f9f9f9;
        }

        /* Owner Benefits Section */
        .owner-benefits {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .benefit-card {
            background: #fff9e6;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border-left: 4px solid #ffc107;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .benefit-card i {
            font-size: 2.5rem;
            color: #ffc107;
            margin-bottom: 15px;
        }

        /* Requirements Section */
        .requirements {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .requirements-list {
            list-style-type: none;
            margin: 20px 0;
            padding: 0;
        }

        .requirements-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #ddd;
            display: flex;
            align-items: center;
        }

        .requirements-list i {
            color: #ffc107;
            margin-right: 10px;
            font-size: 18px;
        }

        /* Insurance Section */
        .insurance {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .insurance-note {
            background: #e8f4fc;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid #3498db;
        }

        .insurance-option {
            display: flex;
            align-items: center;
            margin: 20px 0;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .insurance-option:hover {
            border-color: #ffc107;
        }

        .insurance-option input {
            margin-right: 15px;
            width: 20px;
            height: 20px;
        }

        /* Delivery Information */
        .delivery-info {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .delivery-info h2 {
            color: #ffb700;
            margin-bottom: 20px;
        }

        .delivery-timeline {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .timeline-item {
            padding: 20px;
            border-radius: 10px;
            background: #fff9e6;
            margin: 10px;
            flex: 1;
            min-width: 200px;
            max-width: 300px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .timeline-item i {
            font-size: 2.5rem;
            color: #ffb700;
            margin-bottom: 15px;
        }

        .timeline-date {
            font-weight: 700;
            color: #e74c3c;
            font-size: 1.2rem;
            margin: 10px 0;
        }

        /* Purchase Section */
        .purchase {
            background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .purchase::before {
            content: "ERBJUDANDE";
            position: absolute;
            top: 20px;
            right: -35px;
            background: #e74c3c;
            color: white;
            padding: 10px 40px;
            font-weight: 700;
            transform: rotate(45deg);
            font-size: 14px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .pricing-comparison {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin: 20px 0;
        }

        .original-price-full {
            text-align: center;
        }

        .original-price-full .amount {
            font-size: 2rem;
            text-decoration: line-through;
            color: #777;
        }

        .presale-price {
            text-align: center;
        }

        .presale-price .amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: #e74c3c;
        }

        .savings {
            text-align: center;
            font-weight: 700;
            color: #2ecc71;
            font-size: 1.2rem;
            margin: 10px 0;
        }

        .total-price {
            font-size: 28px;
            font-weight: 700;
            margin: 20px 0;
            color: #333;
            text-align: center;
        }

        .guarantee {
            text-align: center;
            margin: 20px 0;
            padding: 15px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 10px;
            font-weight: 600;
        }

        .guarantee i {
            color: #2ecc71;
            margin-right: 10px;
        }

        .btn {
            display: inline-block;
            background-color: #333;
            color: #fff;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            margin: 0 auto;
            display: block;
            text-align: center;
            max-width: 300px;
        }

        .btn:hover {
            background-color: #555;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-hero {
            background-color: #ffd700;
            color: #333;
            font-size: 1.2rem;
            padding: 15px 35px;
        }

        .btn-hero:hover {
            background-color: #ffcc00;
        }

        /* Footer */
        footer {
            background-color: #333;
            color: #fff;
            padding: 40px 0;
            margin-top: 60px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #ffd700;
        }

        /* Countdown Timer */
        .countdown {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
        }

        .countdown-text {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .countdown-unit {
            background: #ffd700;
            color: #333;
            padding: 10px;
            border-radius: 8px;
            min-width: 70px;
        }

        .countdown-value {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .countdown-label {
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            body {
                padding-top: 35px;
            }

            .hero-content h2 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .price {
                font-size: 2.5rem;
            }

            .original-price {
                font-size: 1.5rem;
            }

            .gallery-nav {
                padding: 10px;
                font-size: 18px;
            }

            .hero {
                height: 70vh;
                min-height: 500px;
            }

            .pricing-comparison {
                flex-direction: column;
                gap: 15px;
            }

            .purchase::before {
                font-size: 12px;
                right: -40px;
                padding: 8px 35px;
            }

            .countdown-timer {
                gap: 8px;
            }

            .countdown-unit {
                min-width: 60px;
                padding: 8px;
            }

            .countdown-value {
                font-size: 1.5rem;
            }

            .gallery-slide img {
                height: 300px;
            }

            .timeline-item {
                min-width: 100%;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .spec-table {
                display: block;
                overflow-x: auto;
            }

            .section-tabs {
                flex-direction: column;
                border-bottom: none;
            }

            .tab-btn {
                border-radius: 5px;
                margin-bottom: 5px;
                text-align: center;
                border: 1px solid #eee;
            }

            .tab-btn:after {
                display: none;
            }

            .tab-btn.active {
                border-color: #ffb700;
            }
        }

        /* Earnings Calculator Section */
        .calculator-section {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .calc-option-details {
            margin: 20px;
        }

        .calculator-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .calculator-header h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 10px;
        }

        .calculator-header p {
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }

        .calculator-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .calculator-explanation {
            flex: 1;
            min-width: 300px;
        }

        .calculator-form {
            flex: 1;
            min-width: 300px;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }

        input[type="number"] {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
        }

        .fare-options {
            margin-bottom: 20px;
        }

        .fare-option {
            display: flex;
            align-items: center;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 8px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .fare-option:hover {
            border-color: #ffb700;
            background-color: #fff9e6;
        }

        .fare-option.selected {
            border-color: #ffb700;
            background-color: #fff9e6;
        }

        .fare-option input {
            margin-right: 15px;
            width: 20px;
            height: 20px;
        }

        .fare-details {
            margin-left: 35px;
        }

        .fare-name {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .fare-description {
            color: #777;
            font-size: 0.9em;
        }

        .input-group {
            display: flex;
            gap: 15px;
        }

        .input-group .form-group {
            flex: 1;
        }

        .calculator-results {
            margin-top: 30px;
            background-color: #fff9e6;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #ffb700;
        }

        .results-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        .results-table th {
            text-align: left;
            padding: 12px 15px;
            border-bottom: 2px solid #ffb700;
            font-weight: 600;
            color: #555;
        }

        .results-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }

        .results-table tr:last-child td {
            border-bottom: none;
        }

        .results-table .highlight {
            font-weight: 700;
        }

        .earnings-note {
            margin-top: 15px;
            font-style: italic;
            color: #777;
        }

        .tax-note {
            margin-top: 15px;
            padding: 12px;
            background-color: #fff4e6;
            border-left: 4px solid #e67e22;
            border-radius: 4px;
            font-size: 0.9em;
        }

        .tax-note strong {
            color: #e67e22;
        }

        .breakdown {
            margin-top: 20px;
            padding: 15px;
            background-color: #e8f4fc;
            border-radius: 8px;
        }

        .breakdown h4 {
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .breakdown-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }

        /* Cookie Consent Styles - Themed to match PowerScoot */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 20px;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border-top: 3px solid #ffb700;
            display: none;
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-text h3 {
            color: #333;
            margin-bottom: 8px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }

        .cookie-text h3 i {
            color: #ffb700;
            margin-right: 10px;
        }

        .cookie-text p {
            color: #555;
            margin: 0;
            line-height: 1.5;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .accept-btn {
            background: #ffb700;
            color: #333;
        }

        .accept-btn:hover {
            background: #ffa000;
            transform: translateY(-2px);
        }

        .reject-btn {
            background: #e74c3c;
            color: white;
        }

        .reject-btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }

        .settings-btn {
            background: #3498db;
            color: white;
        }

        .settings-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }

        .page-title {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 10px;
            font-weight: 700;
            text-align: center;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .info-notice {
            background-color: #e8f4fc;
            border-left: 4px solid #3498db;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        
        .info-notice h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .info-notice h3 i {
            margin-right: 10px;
            color: #3498db;
        }
        
        .info-notice ul {
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .info-notice li {
            margin-bottom: 8px;
            color: #2c3e50;
        }
        
        .checkout-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .checkout-form {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }
        
        .order-summary {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        select,
        textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        input:focus,
        select:focus,
        textarea:focus {
            border-color: #ffb700;
            outline: none;
            box-shadow: 0 0 0 2px rgba(255, 183, 0, 0.2);
        }
        
        .required::after {
            content: " *";
            color: #e74c3c;
        }
        
        .shipping-options, .payment-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 20px 0;
        }
        
        .shipping-option, .payment-option {
            display: flex;
            align-items: center;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .shipping-option:hover, .payment-option:hover {
            border-color: #ffb700;
            background-color: #fff9e6;
        }
        
        .shipping-option.selected, .payment-option.selected {
            border-color: #ffb700;
            background-color: #fff9e6;
        }
        
        .shipping-option input, .payment-option input {
            margin-right: 15px;
            width: 20px;
            height: 20px;
        }
        
        .shipping-details, .payment-details {
            margin-left: 35px;
        }
        
        .shipping-price {
            font-weight: 700;
            color: #2ecc71;
        }
        
        .free {
            color: #2ecc71;
        }
        
        .order-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 25px;
        }
        
        .order-table td {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .order-table .order-total {
            padding: 15px 0;
            font-size: 20px;
            font-weight: 700;
            color: #333;
            border-top: 2px solid #ffb700;
        }
        
        .order-table .label {
            text-align: left;
        }
        
        .order-table .value {
            text-align: right;
        }
        
        .included-section {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
        }
        
        .included-section ul {
            padding-left: 20px;
        }
        
        .included-section li {
            margin-bottom: 10px;
            color: #555;
        }
        
        .payment-notice {
            background-color: #fff4e6;
            border-left: 4px solid #ffb700;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .payment-notice h4 {
            color: #e67e22;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .payment-notice h4 i {
            margin-right: 10px;
            color: #e67e22;
        }
        
        .btn-checkout {
            display: block;
            width: 100%;
            background-color: #ffb700;
            color: #333;
            padding: 16px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            text-align: center;
            margin-top: 20px;
        }
        
        .btn-checkout:hover {
            background-color: #ffa000;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        .secure-note {
            text-align: center;
            margin-top: 15px;
            color: #777;
            font-size: 14px;
        }
        
        .secure-note i {
            color: #2ecc71;
            margin-right: 5px;
        }
        
        .optional {
            color: #777;
            font-weight: normal;
        }
        
        .greyed-out {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .coming-soon {
            font-size: 12px;
            color: #777;
            margin-top: 5px;
        }
        
        .field-validation-error {
            color: #e74c3c;
            font-size: 14px;
            display: block;
            margin-top: 5px;
        }
        
        .input-validation-error {
            border-color: #e74c3c;
        }

        .agreement-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
        }

        ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }

                /* Hero Section */
        .faq-hero {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        
        .faq-hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #333;
        }
        
        .faq-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #555;
        }
        
        /* FAQ Section */
        .faq-section {
            margin: 40px 0;
        }
        
        .faq-category {
            margin-bottom: 50px;
        }
        
        .faq-category h3 {
            font-size: 1.8rem;
            color: #ffb700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd700;
        }
        
        .faq-item {
            background-color: #fff;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .faq-question:hover {
            background-color: #ffb700;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 300px;
        }
        
        .faq-icon {
            transition: transform 0.3s ease;
        }
        
        .faq-icon.rotate {
            transform: rotate(180deg);
        }
        
        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            margin: 60px 0;
        }
        
        .contact-cta h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #333;
        }
        
        .contact-cta p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .logo-filter {
            filter: invert(72%) sepia(83%) saturate(2432%) hue-rotate(1deg) brightness(106%) contrast(103%);
        }
        
        .container-confirmation {
            max-width: 1000px;
            margin: 40px auto;
            padding: 20px;
        }
        
        .header-confirmation {
            text-align: center;
            margin-bottom: 30px;
        }
        .success-icon {
            font-size: 60px;
            color: #2ecc71;
            margin-bottom: 20px;
        }
        
        .page-title {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
        }
        
        .order-number {
            font-size: 1.3rem;
            color: #2c3e50;
            background-color: #e8f4fc;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        
        .info-notice {
            background-color: #e8f4fc;
            border-left: 4px solid #3498db;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        
        .info-notice h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .info-notice h3 i {
            margin-right: 10px;
            color: #3498db;
        }
        
        .info-notice ul {
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .info-notice li {
            margin-bottom: 8px;
            color: #2c3e50;
        }
        
        .confirmation-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .payment-details-confirmation {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }
        
        .order-summary {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }
        
        .bank-details {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
        }
        
        .bank-detail-row {
            display: flex;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #eee;
        }
        
        .bank-detail-label {
            font-weight: 600;
            width: 180px;
            color: #555;
        }
        
        .bank-detail-value {
            flex: 1;
            font-weight: 500;
        }
        
        .important-note {
            background-color: #fff4e6;
            border-left: 4px solid #ffb700;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .important-note h4 {
            color: #e67e22;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .important-note h4 i {
            margin-right: 10px;
            color: #e67e22;
        }
        
        .order-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 25px;
        }
        
        .order-table td {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .order-table .order-total {
            padding: 15px 0;
            font-size: 20px;
            font-weight: 700;
            color: #333;
            border-top: 2px solid #ffb700;
        }
        
        .order-table .label {
            text-align: left;
        }
        
        .order-table .value {
            text-align: right;
        }
        
        .included-section {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
        }
        
        .included-section ul {
            padding-left: 20px;
        }
        
        .included-section li {
            margin-bottom: 10px;
            color: #555;
        }
        
        .btn-confirmation {
            display: inline-block;
            background-color: #ffb700;
            color: #333;
            padding: 16px 30px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            text-align: center;
            margin-top: 20px;
        }
        
        .btn-confirmation:hover {
            background-color: #ffa000;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        .btn-print {
            background-color: #3498db;
            color: white;
            margin-left: 15px;
        }
        
        .btn-print:hover {
            background-color: #2980b9;
        }
        
        .action-buttons {
            text-align: center;
            margin-top: 30px;
        }
        
        .secure-note {
            text-align: center;
            margin-top: 15px;
            color: #777;
            font-size: 14px;
        }
        
        .secure-note i {
            color: #2ecc71;
            margin-right: 5px;
        }
        
        
        @media (max-width: 768px) {
            .confirmation-container {
                flex-direction: column;
            }
            
            .page-title {
                font-size: 1.8rem;
            }
            
            .page-subtitle {
                font-size: 1.1rem;
            }
            
            .bank-detail-row {
                flex-direction: column;
            }
            
            .bank-detail-label {
                width: 100%;
                margin-bottom: 5px;
            }
            
            .action-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-print {
                margin-left: 0;
            }
        }
        @media (max-width: 768px) {
            .checkout-container {
                flex-direction: column;
            }
            
            .page-title {
                font-size: 1.8rem;
            }
            
            .page-subtitle {
                font-size: 1.1rem;
            }
            
            .shipping-option, .payment-option {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .shipping-details, .payment-details {
                margin-left: 0;
                margin-top: 10px;
            }
        }

        @media (max-width: 450px) {
            .header {
                margin-top: 30px;
            }

            .hero-content h2 {
                margin-top: 220px;
                font-size: 2.5rem;
            }

            .container-main {
                margin-top: 220px;
                max-width: 1200px;
                margin-left: auto;
                margin-right: auto;
                padding: 0 20px;
            }

            .calculator-form {
                flex: 1;
                min-width: 300px;
                background-color: #f9f9f9;
                padding: 5px;
                border-radius: 8px;
            }

            .calculator-results {
                margin-top: 30px;
                background-color: #fff9e6;
                padding: 10px;
                border-radius: 8px;
                border-left: 4px solid #ffb700;
            }

            .results-table th {
                text-align: left;
                padding: 6px 7px;
                border-bottom: 2px solid #ffb700;
                font-weight: 600;
                color: #555;
            }

            .results-table td {
                padding: 6px 7px;
                border-bottom: 1px solid #eee;
            }
        }

        @media (min-width: 450px) {
            .hero-content h2 {
                margin-top: 180px;
                font-size: 2.5rem;
            }

            .container-main {
                margin-top: 150px;
                max-width: 1200px;
                margin-left: auto;
                margin-right: auto;
                padding: 0 20px;
            }
        }

        /* Responsive */
        @media (min-width: 450px) and ( max-width: 768px) {
            body {
                padding-top: 35px;
            }

            .scooter-display {
                flex-direction: column;
            }

            .hero-content h2 {
                margin-top: 100px;
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .price {
                font-size: 2.5rem;
            }

            .original-price {
                font-size: 1.5rem;
            }

            .gallery-nav {
                padding: 10px;
                font-size: 18px;
            }

            .hero {
                height: 70vh;
                min-height: 500px;
            }

            .pricing-comparison {
                flex-direction: column;
                gap: 15px;
            }

            .purchase::before {
                font-size: 12px;
                right: -40px;
                padding: 8px 35px;
            }

            .countdown-timer {
                gap: 8px;
            }

            .countdown-unit {
                min-width: 60px;
                padding: 8px;
            }

            .countdown-value {
                font-size: 1.5rem;
            }

            .gallery-slide img {
                height: 300px;
            }

            .timeline-item {
                min-width: 100%;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .spec-table {
                display: block;
                overflow-x: auto;
            }

            .section-tabs {
                flex-direction: column;
                border-bottom: none;
            }

            .tab-btn {
                border-radius: 5px;
                margin-bottom: 5px;
                text-align: center;
                border: 1px solid #eee;
            }

            .tab-btn:after {
                display: none;
            }

            .tab-btn.active {
                border-color: #ffb700;
            }

            .calculator-content {
                flex-direction: column;
            }

            .input-group {
                flex-direction: column;
                gap: 0;
            }

            .fare-option {
                flex-direction: column;
                align-items: flex-start;
            }

            .fare-details {
                margin-left: 0;
                margin-top: 10px;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }