
        .header {
            height: 340px !important;
        }
        
       
        :root {
            --dark-text: #333333;
            --medium-text: #555555;
            --light-text: #777777;
            --icon-color: #28a745;
            --primary-color: #28a745;
            --secondary-color: #f0ad4e;
        }
        
     
        body {
            color: var(--dark-text);
        }
        
       
        .summary-section, .vehicle-section {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px;
            margin-bottom: 15px;
        }
        
        .summary-section h4,
        .summary-section h5 {
            color: var(--dark-text);
        }
        
        .summary-section p,
        .summary-section li {
            color: var(--medium-text);
        }
        
     
        .vehicle-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 15px;
        }
        
        .vehicle-image {
            width: 100%;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        
        .vehicle-details h5 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--dark-text);
        }
        
        .vehicle-details p {
            margin: 4px 0;
            font-size: 0.9rem;
            color: var(--medium-text);
        }
        
        .features-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 10px 0;
        }
        
        .features-list span {
            background: #f8f9fa;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            color: var(--medium-text);
        }
        
        .vehicle-price {
            text-align: center;
            margin-top: 15px;
            padding-top: 10px;
            border-top: 1px solid #eee;
        }
        
        .vehicle-price h4 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
      
        .btn-book {
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            width: 100%;
            font-weight: bold;
        }
        
        .btn-change {
            background-color: var(--secondary-color);
            color: #fff;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            width: 100%;
            margin-top: 10px;
        }
        
      
        .toggle-summary-btn {
            background-color: var(--secondary-color);
            color: #fff;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            width: 100%;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
      
        .summary-section .fa-map-marker-alt,
        .summary-section .fa-calendar-alt,
        .summary-section .fa-users,
        .summary-section .fa-arrow-right,
        .vehicle-details .fa-users,
        .vehicle-details .fa-suitcase,
        .vehicle-details .fa-road,
        .features-list .fa-handshake,
        .features-list .fa-door-open,
        .features-list .fa-child {
            color: var(--icon-color);
        }
        
       
        @media (max-width: 767.98px) {
            .vehicle-card {
                flex-direction: column;
            }
            
            .vehicle-image {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .summary-section {
                display: none;
                margin-bottom: 15px;
            }
            
            .summary-section.visible {
                display: block;
            }
        }
        
        @media (min-width: 768px) and (max-width: 991.98px) {
            .vehicle-card {
                display: flex;
            }
            
            .vehicle-image {
                width: 120px;
                margin-right: 15px;
            }
            
            .toggle-summary-btn {
                display: none;
            }
        }
        
        @media (min-width: 992px) {
            .vehicle-card {
                display: flex;
                align-items: center;
            }
            
            .vehicle-image {
                width: 150px;
                margin-right: 20px;
            }
            
            .vehicle-price {
                text-align: right;
                border-top: none;
                margin-left: auto;
                padding-left: 20px;
            }
            
            .toggle-summary-btn {
                display: none;
            }
        }