.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-section h2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #1A1A1A;
}

.calculator-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.type-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.type-option i {
  font-size: 24px;
  color: #6C757D;
  background: #F8F9FA;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.type-option .text-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.type-option span {
  font-size: 16px;
  font-weight: 500;
  color: #495057;
}

.type-option small {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.3;
}

.type-option.active {
  background: #F0F7FF;
  border-color: #6e00ff;
}

.type-option.active i {
  color: white;
  background: #6e00ff;
}

.type-option.active span {
  color: #6e00ff;
}

.type-option.active small {
  color: #6e00ff;
  opacity: 0.8;
}

.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,
.input-wrapper .percentage {
  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;
}

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

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

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

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

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

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

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

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

.hidden {
  display: none;
}

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

  .calculator-type-selector {
    grid-template-columns: 1fr;
  }

  .calculator-results {
    grid-template-columns: 1fr;
  }

  .result-item {
    padding: 24px;
  }

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

  .type-option span {
    white-space: normal;
  }

  .type-option small {
    white-space: normal;
  }

  .result-item label {
    white-space: normal;
  }
}


.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;
}

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