 /* Global styles */
    * {
      box-sizing: border-box;
    }
   
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
    h1 {
      color: #2b6dad;
      margin-top: 0;
      text-align: center;
    }
    .intro-text {
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 20px;
      text-align: center;
    }

    /* Tabs */
    .tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 10px;
      border-bottom: 1px solid #ccc;
    }
    .tab {
      flex: 1 1 200px;
      text-align: center;
      padding: 10px;
      cursor: pointer;
      background: #f8f8f8;
      border: 1px solid #ccc;
      border-bottom: none;
      margin: 2px;
    }
    .tab.active {
      background: #fff;
      font-weight: bold;
      border-bottom: 1px solid #fff;
    }

    /* Forms */
    .forms-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .form-container {
      border: 1px solid #ccc;
      background: #eee;
      padding: 20px;
      width: 100%;
      max-width: 400px;
      display: none;
    }
    .form-container.active {
      display: block;
    }
    .form-container h2 {
      color: #2b6dad;
      margin-top: 0;
      margin-bottom: 15px;
      text-align: center;
    }
    .form-group {
      margin-bottom: 12px;
    }
    .form-group label {
      display: block;
      font-size: 14px;
      margin-bottom: 4px;
    }
    .form-group input[type="number"],
    .form-group select {
      width: 100%;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 3px;
      font-size: 14px;
    }
    .buttons {
      text-align: center;
      margin-top: 15px;
    }
    .buttons button {
      cursor: pointer;
      margin: 5px;
      padding: 10px 20px;
      background: #5cb85c;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 14px;
    }
    .buttons button:hover {
      background: #4cae4c;
    }

    /* Results */
    .results {
      margin-top: 20px;
      padding: 15px;
      border: 1px solid #ccc;
      background: #fff;
      width: 100%;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .highlight-row {
      font-weight: bold;
      font-size: 16px;
      color: #fff;
      background: #5cb85c;
      padding: 10px;
      margin-bottom: 10px;
      text-align: center;
    }
    .section-heading {
      font-weight: bold;
      background: #eee;
      padding: 8px;
      margin: 15px 0 8px 0;
      text-align: center;
    }
    .result-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 5px;
      font-size: 14px;
    }
    .result-row span {
      display: inline-block;
    }
    /* Hide results sections until needed */
    #resultsTotalPrice, #resultsMonthlyPayment {
      display: none;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .form-container, .results {
        max-width: 90%;
      }
      .result-row {
        flex-wrap: wrap;
        gap: 10px;
      }
          .tab {
      flex: 1 1 20px;
      text-align: center;
      padding: 5px;
      cursor: pointer;
      background: #f8f8f8;
      border: 1px solid #ccc;
      border-bottom: none;
      margin: 2px;
    }
    }