  .car-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 1.5em 0;
  }
  
  .spec-item {
    background: #f5f5f5;
    padding: 1em;
    border-radius: 8px;
    text-align: center;
  }
  
  .spec-value {
    font-size: 1.3em;
    font-weight: 700;
    color: #e34234;
  }
  
  .spec-label {
    font-size: 0.9em;
    color: #666;
    margin-top: 0.3em;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2em 0;
  }
  
  .benefit-card {
    background: #eae7dc;
    padding: 1.5em;
    border-radius: 8px;
    text-align: center;
  }
  
  .benefit-icon {
    font-size: 2.5em;
    margin-bottom: 0.5em;
  }
  
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
  }
  
  .comparison-table th {
    background: #4d4d4d;
    color: white;
    padding: 1em;
    text-align: left;
  }
  
  .comparison-table td {
    padding: 1em;
    border-bottom: 1px solid #ddd;
  }
  
  .comparison-table tr:hover {
    background: #f5f5f5;
  }
  
  .order-btn-container {
    margin-top: 1.5em;
    text-align: center;
  }
  
  .quick-order-btn {
    background: #e34234;
    color: white;
    border: none;
    padding: 0.8em 2em;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.1em;
  }
  
  .quick-order-btn:hover {
    background: #d70000;
  }
  
  .quick-order-form {
    background: #eae7dc;
    padding: 2em;
    border-radius: 8px;
    margin: 2em 0;
    border: 1px solid #cdcdcd;
  }
  
  .form-group {
    margin-bottom: 1.2em;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0.3em;
    color: #2e2e2e;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.8em 1em;
    border: 1px solid #aeaeae;
    border-radius: 4px;
    background: #fff;
    font-size: 15px;
    box-sizing: border-box;
  }
  
  .form-group input.error {
    border-color: #d70000;
  }
  
  .form-group .error-message {
    color: #d70000;
    font-size: 12px;
    margin-top: 0.3em;
    display: block;
  }
  
  .submit-btn {
    background: #e34234;
    color: white;
    border: none;
    padding: 1em 2em;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 1.1em;
    transition: background 0.3s;
  }
  
  .submit-btn:hover {
    background: #d70000;
  }
  
  .car-badge {
    display: inline-block;
    background: #e34234;
    color: white;
    padding: 0.3em 1em;
    border-radius: 20px;
    font-size: 0.8em;
    margin-bottom: 0.5em;
  }
  
  @media (max-width: 767px) {
    .car-specs-grid {
      grid-template-columns: 1fr;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  }
