 :root {
            --primary: #e87216;
            --primary: #e87216;
            --secondary: #3f37c9;
            --accent: #000000;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #4ade80;
            --green-ad: #2ecc71;
            --green-dark: #27ae60;
              --auto-europe-blue: #e87216;
            --auto-europe-yellow: #e87216;
            --auto-europe-gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background-color: #f9fafb;
            position: relative;
        }
        
        /* Top Social Media Bar - Enhanced */
        .top-bar {
            background: #e87216;
            padding: 9px 0;
            z-index: 1000;
            max-width: 100%;
            position: fixed;
            left: 0;
            right: 0;
            animation: slideInDown 0.6s ease-out;
            margin-top: 10px;
        }
        
        .top-bar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-item:hover {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .contact-item i {
            font-size: 1.1rem;
            min-width: 20px;
        }
        
        .social-icons-top {
            display: flex;
            gap: 15px;
        }
        
        .social-icons-top a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            text-decoration: none;
        }
        
        .social-icons-top a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px) scale(1.1);
            color: white;
        }
        
        /* Ad Banner Section */
        .ad-banner-container {
            background: #000000;
            padding: 20px 0;
            text-align: center;
            animation: slideInDown 0.8s ease-out 0.2s both;
        }
        
        .ad-banner {
            background: #e87216;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            animation: pulse 2s infinite;
            max-width: 1200px;
            margin: 0 auto;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .ad-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 25px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            background-color: #e87216;
        }
        
        .ad-content.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ad-left, .ad-right {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
            min-width: 250px;
        }
        
        .ad-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(255,255,255,0.4);
            animation: float 4s ease-in-out infinite;
        }
        
        .ad-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .ad-text, .ad-right-text {
            text-align: left;
            flex: 1;
        }
        
        .ad-text h3, .ad-right-text h4 {
            color: white;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        
        .ad-text h3 {
            font-size: 1.5rem;
        }
        
        .ad-right-text h4 {
            font-size: 1.2rem;
        }
        
        .ad-text p, .ad-right-text p {
            color: rgba(255,255,255,0.95);
            font-size: 0.95rem;
            line-height: 1.5;
            font-weight: 500;
        }
        
        .ad-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
        }
        
        /* MAIN HEADER & NAVIGATION - Completely Redesigned */
        .main-header {
            background: black;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            transition: all 0.3s ease;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            display: block;
            padding: 12px 18px;
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--warning);
            background: rgba(185, 142, 3, 0.05);
        }
        
        .nav-link.active {
            color: var(--primary);
            background: rgba(67, 97, 238, 0.1);
        }
        
        .btn-get-started {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-left: 10px;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        }
        
        .btn-get-started:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
            background: linear-gradient(135deg, var(--secondary), #3a32b5);
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 35px;
            height: 28px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }
        
        .mobile-menu-btn span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Offcanvas Menu - Enhanced */
        .offcanvas {
            width: 320px !important;
        }
        
        .offcanvas-header {
            padding: 20px 25px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .offcanvas-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .offcanvas-body {
            padding: 0;
        }
        
        .mobile-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-nav li {
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }
        
        .mobile-nav a {
            display: block;
            padding: 18px 25px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .mobile-nav a:hover {
            background: rgba(67, 97, 238, 0.08);
            color: var(--primary);
            padding-left: 32px;
        }
        
        .mobile-cta-btn {
            display: block;
            width: calc(100% - 50px);
            margin: 20px auto;
            padding: 14px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .mobile-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
        }
        
        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(67, 97, 238, 0.08) 0%, transparent 50%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--dark);
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 35px;
            max-width: 650px;
            line-height: 1.7;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero-btns {
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .hero-image {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border: 3px solid white;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border: 1px solid #f0f0f0;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, #e6f0ff 0%, #f0f4ff 100%);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin: 15px;
            border: none;
        }
        
        .testimonial-content {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e0e0e0;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: bold;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #888;
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .btn-light {
            background: white;
            color: var(--primary);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-light:hover {
            background: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links h4 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Alert */
        .custom-alert {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1050;
            background: var(--success);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transform: translateX(120%);
            transition: transform 0.5s ease;
        }
        
        .custom-alert.show {
            transform: translateX(0);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
            100% {
                transform: scale(1);
            }
        }
        
        @keyframes slideInDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 991px) {
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-content {
                text-align: center;
                margin-bottom: 40px;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            .ad-content {
                flex-direction: column;
                text-align: center;
            }
            
            .ad-left, .ad-right {
                width: 100%;
                flex: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .top-bar-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .contact-info {
                justify-content: center;
                gap: 15px;
            }
            
            .logo-text {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 130px 0 60px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .features, .testimonials {
                padding: 60px 0;
            }
            
            .cta h2 {
                font-size: 2rem;
            }
            
            .btn {
                width: 100%;
                margin-bottom: 10px;
            }
            
            .hero-btns .btn:first-child {
                margin-bottom: 10px;
            }
            
            .ad-banner {
                padding: 15px;
            }
            
            .ad-text h3 {
                font-size: 1.2rem;
            }
            
            .ad-right-text h4 {
                font-size: 1rem;
            }
        }
        
        /* Smart Watch Optimization */
        @media (max-width: 320px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            
            .hero p {
                font-size: 0.85rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .feature-card {
                padding: 20px;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .feature-card h3 {
                font-size: 1.2rem;
            }
            
            .logo-text {
                font-size: 1.4rem;
            }
            
            .top-bar {
                padding: 8px 0;
            }
            
            .contact-item {
                font-size: 0.8rem;
                gap: 8px;
            }
            
            .contact-item i {
                font-size: 0.9rem;
            }
            
            .social-icons-top a {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }
            
            .ad-banner {
                padding: 10px;
            }
            
            .custom-alert {
                padding: 12px 20px;
                font-size: 0.85rem;
                right: 10px;
                top: 10px;
            }
        }

         /* NEW CAROUSEL SECTION */
        .carousel-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
        }
        
        .carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .carousel-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .carousel-header h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .carousel-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 300%; /* 3 slides */
        }
        
        .carousel-slide {
            flex: 0 0 33.333%;
            padding: 40px;
            background: white;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .slide-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 2rem;
        }
        
        .slide-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            font-weight: 700;
        }
        
        .slide-content p {
            color: #666;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
        
        /* Carousel Controls */
        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--primary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            margin-right: 30px;
             margin-left: 30px;
        }
        
        .carousel-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: var(--primary);
            transform: scale(1.2);
        }


           /* NEW AUTO EUROPE PAGE SECTION */
        .auto-europe-page {
            padding: 100px 0;
            background: white;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            color: var(--auto-europe-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .page-header p {
            color: var(--auto-europe-gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        /* Customer Reviews Section */
        .reviews-section {
            background: #f8f9fa;
            padding: 60px 0;
            margin: 50px 0;
        }
        
        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .review-cards {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-behavior: smooth;
        }
        
        .review-card {
            min-width: 300px;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .review-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 15px;
        }
        
        .review-rating i {
            color: gold;
            font-size: 1.2rem;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--auto-europe-blue);
            margin-bottom: 10px;
        }
        
        .review-text {
            color: #555;
            line-height: 1.6;
            font-size: 1.05rem;
        }
        
        /* Main Features Section */
        .features-section {
            padding: 80px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-color: var(--auto-europe-blue);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--auto-europe-blue), var(--auto-europe-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.5rem;
        }
        
        .feature-box h3 {
            font-size: 1.5rem;
            color: var(--auto-europe-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .feature-box p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Campervan Rental Section */
        .camper-section {
            background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
            padding: 80px 0;
            margin: 50px 0;
        }
        
        .camper-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .camper-header h2 {
            font-size: 2.5rem;
            color: var(--auto-europe-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .camper-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .camper-content {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .camper-image {
            flex: 1;
            min-width: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .camper-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        .camper-text {
            flex: 1;
            min-width: 300px;
        }
        
        .camper-text h3 {
            font-size: 1.8rem;
            color: var(--auto-europe-blue);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .camper-text p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        
        .camper-benefits {
            margin-top: 30px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .benefit-icon {
            width: 25px;
            height: 25px;
            background: var(--auto-europe-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
        }
        
        /* Savings Section */
        .savings-section {
            background: linear-gradient(135deg, var(--auto-europe-blue) 0%, #e87216 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .savings-header {
            margin-bottom: 40px;
        }
        
        .savings-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .savings-header p {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .savings-content {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .savings-box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            width: 300px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .savings-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }
        
        .savings-box h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .savings-box p {
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
            font-size: 1.05rem;
        }
        