.bl-calc-container {
      max-width: 600px;
      margin: 0 auto;
      padding: 48px 24px;
    }

    .bl-calc-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 32px;
    }

    .bl-calc-logo {
      width: 96px;
      height: 96px;
      margin-bottom: 16px;
    }

    .bl-calc-heading {
      font-size: 34px !important;
      font-weight: bold !important;
      color: #2ab939 !important;
      text-align: center !important;
    }

    .bl-calc-box {
      background-color: white;
      color: #333;
      padding: 24px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .bl-calc-group {
      margin-bottom: 24px;
    }

    .bl-calc-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .bl-calc-input,
    .bl-calc-select {
      width: 100%;
      padding: 8px 12px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .bl-calc-btn {
      background-color: #2ab939;
      color: white;
      font-weight: bold;
      padding: 10px 16px;
      width: 100%;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .bl-calc-btn:hover {
      background-color: #202020;
    }

    .bl-calc-summary {
      margin-top: 32px;
      text-align: center;
      font-weight: bold;
      color: #2ab939;
      font-size: 18px;
    }

    .bl-calc-summary .amount {
      font-size: 24px;
      font-weight: 800;
      margin-top: 4px;
    }

    .bl-calc-results {
      margin-top: 16px;
      font-size: 14px;
      color: #333;
    }

    .bl-calc-results p {
      margin: 8px 0;
    }

    .bl-calc-highlight {
      color: #2ab939;
      font-weight: 600;
      margin-top: 16px;
    }

.bl-calc-cta-wrap {
  text-align: center;
  margin-top: 32px;
}

.bl-calc-cta {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: .3s;
  text-decoration: none !important;
}

.bl-calc-cta:hover {
  transform: scale(1.1);
	color: white;
}
