
  body {
    background: #cc9e00;
    font-family: 'Arial', sans-serif;
  }
  .form-section {
    border: 2px solid #cc9e00;
    border-radius: 12px;
    padding: 20px;
    background: #fffdf5;
    margin: 20px auto;
    max-width: 700px;
  }
  h3, h4 {
    margin-bottom: 10px;
    color: #cc9e00;
  }
  label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
  }
  input, select {
    width: 100%;
    padding: 10px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }
  .radio-group {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
  }
  .radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .radio-option input {
    transform: scale(1.2);
  }

  #map {
    height: 250px;
    margin-top: 12px;
    border-radius: 8px;
  }
  .airport-distances p {
    margin: 4px 0;
  }
  .airport-info {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
  }
    #button_submitt{
    display: block;
    width: 100%;
    margin: 25px auto;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
  }
  #button_submit:hover {
    background-color: #0056b3;
  }

  #button_load_submit{
    display: block;
    width: 100%;
    margin: 25px auto;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
  }
  #button_load_submit:hover {
    background-color: #0056b3;
  }

  #checkout-button{
    display: block;
    width: 100%;
    margin: 25px auto;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
  }
  #checkout-button:hover {
    background-color: #0056b3;
  }

  .container {
            max-width: 600px;
            width: 100%;
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            text-align: center;
            animation: slideIn 0.5s ease-out;
        }
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .success-icon {
            font-size: 80px;
            margin-bottom: 20px;
            animation: bounce 1s ease-in-out;
        }
        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        h1 {
            color: #28a745;
            font-size: 32px;
            margin-bottom: 10px;
        }
        .subtitle {
            color: #666;
            font-size: 18px;
            margin-bottom: 30px;
        }
        .info-box {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: left;
            border-left: 4px solid #28a745;
        }
        .info-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
        }
        .info-row:last-child {
            border-bottom: none;
        }
        .info-label {
            font-weight: bold;
            color: #667eea;
        }
        .info-value {
            color: #333;
            word-break: break-all;
        }
        .button {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 30px;
            margin-top: 20px;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        .button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        }
        .note {
            color: #888;
            font-size: 14px;
            margin-top: 20px;
        }
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .form-section {
          margin-bottom: 20px;
        }
        .form-section h3, .form-section h4 {
          margin-bottom: 10px;
        }
        input[type="text"],
        input[type="email"] {
          width: 100%;
          padding: 8px;
          margin-bottom: 10px;
          box-sizing: border-box;
          border: 1px solid #ccc;
          border-radius: 4px;
          background-color: #f9f9f9;
        }
        label {
          display: block;
          margin-top: 8px;
          font-weight: bold;
        }