@charset "utf-8";
/* CSS Document */
.container {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .zucheader {
            background: linear-gradient(135deg, #1a6dcc 0%, #0d4d9c 100%);
            color: white;
            padding: 25px 30px;
            text-align: center;
        }
        
        .zucheader h3 {
            font-size: 24px;
            margin-bottom: 5px;
        }
        
        .zucheader p {
            opacity: 0.9;
            font-size: 14px;
        }
        
        .form-container {
            padding: 30px;
        }
        
        .form-section {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        
        .form-section:last-of-type {
            border-bottom: none;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: 18px;
            color: #1a6dcc;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #eef4ff;
            display: flex;
            align-items: center;
        }
        
        .section-title::before {
            content: "✓";
            background-color: #eef4ff;
            color: #1a6dcc;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 14px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        
        .required::after {
            content: " *";
            color: #e63946;
        }
        
        select, input[type="text"], input[type="tel"], input[type="email"], textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #d1d9e6;
            border-radius: 6px;
            font-size: 15px;
            transition: all 0.3s;
        }
        
        select:focus, input:focus, textarea:focus {
            outline: none;
            border-color: #1a6dcc;
            box-shadow: 0 0 0 3px rgba(26, 109, 204, 0.1);
        }
        
        .vehicle-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 10px;
        }
        
        .vehicle-option {
            border: 2px solid #eef4ff;
            border-radius: 8px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s;
            background-color: #fafcff;
        }
        
        .vehicle-option:hover {
            border-color: #c5dcff;
            background-color: #f0f7ff;
            transform: translateY(-2px);
        }
        
        .vehicle-option.selected {
            border-color: #1a6dcc;
            background-color: #f0f7ff;
            box-shadow: 0 4px 8px rgba(26, 109, 204, 0.1);
        }
        
        .vehicle-option input {
            margin-right: 8px;
        }
        
        .vehicle-name {
            font-weight: 600;
            font-size: 16px;
            color: #1a6dcc;
            margin-bottom: 5px;
        }
        
        .vehicle-category {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            padding: 2px 8px;
            background-color: #eef4ff;
            border-radius: 4px;
            display: inline-block;
        }
        
        .vehicle-desc {
            font-size: 14px;
            color: #555;
            margin-top: 5px;
        }
        
        .reminder {
            background-color: #f8f9ff;
            border-left: 4px solid #1a6dcc;
            padding: 12px 15px;
            margin-top: 15px;
            font-size: 14px;
            border-radius: 0 4px 4px 0;
        }
        
        .reminder p {
            margin-bottom: 5px;
        }
        
        .reminder ul {
            padding-left: 20px;
            margin-top: 5px;
        }
        
        .reminder li {
            margin-bottom: 3px;
        }
        
        .submit-btn {
            background: linear-gradient(to right, #1a6dcc, #0d5bb5);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            background: linear-gradient(to right, #0d5bb5, #0a4a9c);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(13, 91, 181, 0.2);
        }
        
        @media (max-width: 768px) {
            .container {
                border-radius: 8px;
            }
            
            .form-container {
                padding: 20px;
            }
            
            .zucheader {
                padding: 20px;
            }
            
            .vehicle-options {
                grid-template-columns: 1fr;
            }
        }
        
        .footer-note {
            text-align: center;
            margin-top: 20px;
            font-size: 13px;
            color: #777;
            line-height: 1.5;
        }