.calculator-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  max-width: 840px;
  margin: 40px auto;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  outline: none;
  transition: all 0.2s ease;
  background: #F8F9FA;
}

.input-wrapper input:focus {
  border-color: #6e00ff;
  background: white;
}

.input-wrapper .currency {
  position: absolute;
  right: 18px;
  color: #6C757D;
  font-weight: 500;
  font-size: 15px;
  background: #E9ECEF;
  padding: 6px 10px;
  border-radius: 8px;
}

.info-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #FFF4E6;
  border-radius: 12px;
  border: 1px solid #FFE8CC;
}

.info-text i {
  color: #FF9800;
  font-size: 22px;
  flex-shrink: 0;
}

.info-text span {
  font-size: 15px;
  color: #995C00;
  line-height: 1.5;
}

.calculate-button {
  width: 100%;
  padding: 18px;
  background: #6e00ff;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calculate-button:hover {
  background: #770fff;
  transform: translateY(-1px);
}

.calculator-results {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-item {
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.result-item:nth-child(1) {
  background: #E8F5E8;
}

.result-item:nth-child(2) {
  background: #F0E8FF;
}

.result-item:nth-child(3) {
  background: #FFF0E6;
}

.result-item:nth-child(4) {
  background: #FFE8E8;
}

.result-item:nth-child(5) {
  background: #FFF8E6;
}

.result-item:nth-child(6) {
  background: #E6F7FF;
}

.result-item label {
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  white-space: nowrap;
  margin-bottom: 8px;
}

.result-item span {
  font-size: 24px;
  font-weight: 600;
}

.result-item:nth-child(1) span {
  color: #2F9E44;
}

.result-item:nth-child(2) span {
  color: #6e00ff;
}

.result-item:nth-child(3) span {
  color: #E8590C;
}

.result-item:nth-child(4) span {
  color: #E53E3E;
}

.result-item:nth-child(5) span {
  color: #D69E2E;
}

.result-item:nth-child(6) span {
  color: #3182CE;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .calculator-card {
    padding: 28px;
    margin: 20px;
  }

  .calculator-results {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .result-item {
    padding: 20px;
  }

  .result-item span {
    font-size: 20px;
  }

  .result-item label {
    font-size: 13px;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .calculator-results {
    grid-template-columns: 1fr;
  }

  .result-item {
    padding: 24px;
  }

  .result-item span {
    font-size: 22px;
  }
}

.faq-salary-container {
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
}

.faq-salary-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 24px 0;
  font-size: 18px;
  color: #100025;
  font-weight: 500;
  line-height: 28px;
  font-family: 'Inter', sans-serif;
}

.faq-salary-answer {
  display: none;
  font-size: 16px;
  font-weight: 400;
  color: #6E7D88;
  line-height: 24px;
}


/* Modern table styling inside FAQ answers */
.faq-salary-answer table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 16px 0;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 12px;
}

.faq-salary-answer caption {
  caption-side: top;
  text-align: left;
  color: #6C757D;
  font-size: 14px;
  padding: 8px 0;
}

.faq-salary-answer th,
.faq-salary-answer td {
  vertical-align: middle;
  padding: 12px 16px;
  font-size: 14px;
}

.faq-salary-answer thead th {
  background: #F8F9FA;
  color: #495057;
  font-weight: 600;
  border-bottom: 1px solid #E9ECEF;
  text-align: left;
}

.faq-salary-answer tbody td {
  color: #343A40;
  border-top: 1px solid #F1F3F5;
}

.faq-salary-answer tbody tr:nth-child(odd) {
  background: #FCFCFD;
}

.faq-salary-answer tbody tr:hover {
  background: #F5F7FA;
}

@media (max-width: 768px) {
  .faq-salary-answer {
    overflow-x: auto;
  }

  .faq-salary-answer table {
    min-width: 560px;
  }

  .faq-salary-answer th,
  .faq-salary-answer td {
    padding: 10px 12px;
    font-size: 13px;
  }
}



.faq-salary-divider {
  border: 0;
  border-top: 0.1px solid #EEE;
  margin: 0;
}
