
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .title-section {
            text-align: center;
            margin-bottom: 32px;
        }
        
        .main-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 16px;
        }
        
        .subtitle {
            font-size: 1.25rem;
            color: #6b7280;
        }
        
        .offers-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }
        
        @media (min-width: 768px) {
            .offers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .offers-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .offer-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .card-header {
            padding: 16px;
            color: white;
        }
        
        .card-header.navy {
            background-color: #1e3a8a;
        }
        
        .card-header.green {
            background-color: #059669;
        }
        
        .card-header.gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
        }
        
        .card-title {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 4px;
        }
        
        .card-subtitle {
            font-size: 0.875rem;
            opacity: 0.9;
        }
        
        .card-content {
            padding: 24px;
        }
        
        .icon-container {
            text-align: center;
            margin-bottom: 16px;
        }
        
        .vehicle-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto;
        }
        
        .price-section {
            text-align: center;
            margin-bottom: 16px;
        }
        
        .current-price {
            font-size: 2rem;
            font-weight: bold;
            color: #1e3a8a;
        }
        
        .old-price {
            color: #6b7280;
            text-decoration: line-through;
            margin-left: 8px;
        }
        
        .price-period {
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        .countdown-container {
            background-color: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 16px;
        }
        
        .countdown-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: #b91c1c;
            text-align: center;
            margin-bottom: 8px;
        }
        
        .countdown-display {
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        
        .countdown-item {
            text-align: center;
        }
        
        .countdown-number {
            background-color: #dc2626;
            color: white;
            border-radius: 4px;
            padding: 4px 8px;
            font-weight: bold;
            min-width: 32px;
        }
        
        .countdown-label {
            font-size: 0.75rem;
            color: #dc2626;
            margin-top: 2px;
        }
        
        .features-list {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 16px;
            list-style: none;
        }
        
        .features-list li {
            margin-bottom: 4px;
        }
        
        .reserve-btn {
            width: 100%;
            font-weight: bold;
            padding: 12px 0;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .btn-green {
            background-color: #059669;
            color: white;
        }
        
        .btn-green:hover {
            background-color: #10b981;
        }
        
        .btn-navy {
            background-color: #1e3a8a;
            color: white;
        }
        
        .btn-navy:hover {
            background-color: #1e40af;
        }
        
        .btn-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
            color: white;
        }
        
        .btn-gradient:hover {
            opacity: 0.9;
        }
        
        .notification {
            position: fixed;
            top: 16px;
            right: 16px;
            background-color: #10b981;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
  
        
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #10b981 0%, #1e3a8a 100%);
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-white {
            color: white;
        }
        
        .offer-badge {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            display: inline-block;
            padding: 12px 32px;
            border-radius: 50px;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            animation: bounce 1s infinite alternate;
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        .btn2 {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.125rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: white;
            color: #1e3a8a;
        }
        
        .btn-primary:hover {
            background-color: #f3f4f6;
        }
        
        .btn-secondary {
            background-color: #fbbf24;
            color: #7c2d12;
        }
        
        .btn-secondary:hover {
            background-color: #fcd34d;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 16px;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 16px;
            color: #ffffff;
        }
        
        .section-subtitle {
            font-size: 1.25rem;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            align-items: center;
            max-width: 400px;
            margin: 0 auto;
        }
        
        .form-input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #d1d5db;
            font-size: 1rem;
            color: #374151;
            width: 100%;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #fbbf24;
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
        }
        
        .benefits {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 32px;
            font-size: 0.875rem;
            flex-wrap: wrap;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
        }
        
        .benefit-check {
            color: #fbbf24;
            margin-right: 8px;
        }
        
        .footer {
            background-color: #1f2937;
            color: white;
            padding: 48px 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        
        .footer-section h5 {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 16px;
        }
        
        .footer-section h6 {
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .footer-section p {
            color: #9ca3af;
        }
        
        .footer-list {
            list-style: none;
        }
        
        .footer-list li {
            margin-bottom: 8px;
        }
        
        .footer-list a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-list a:hover {
            color: white;
        }
        
        .footer-social {
            display: flex;
            gap: 16px;
        }
        
        .footer-bottom {
            border-top: 1px solid #374151;
            margin-top: 32px;
            padding-top: 32px;
            text-align: center;
            color: #9ca3af;
        }
        
        .header {
            padding: 32px 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            
        }
        
        .hero {
            padding: 64px 0;
        }
        
        .cta-section {
            padding: 64px 0;
        }
        
        .notification {
            position: fixed;
            top: 16px;
            right: 16px;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            align-items: center;
        }
        
        .notification-success {
            background-color: #10b981;
            color: white;
        }
        
        .notification-info {
            background-color: #3b82f6;
            color: white;
        }
        
        .notification-icon {
            margin-right: 8px;
        }
        
        .notification-content {
            display: flex;
            flex-direction: column;
        }
        
        .notification-title {
            font-weight: bold;
        }
        
        .notification-text {
            font-size: 0.875rem;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes bounce {
            from { transform: rotate(-3deg); }
            to { transform: rotate(3deg); }
        }
        
        @media (min-width: 768px) {
            .form-group {
                flex-direction: row;
                max-width: 500px;
            }
            
            .form-input {
                width: auto;
            }
            
            .hero-title {
                font-size: 4rem;
            }
        }
        
        @media (max-width: 767px) {
            .benefits {
                gap: 16px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
              .header {
            padding: 32px 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            margin-top: 50px;
        }
        
        }
   