:root {
  --primary-color-dark: #b38f2b;
  --accent-color: #d4aa28;
  --background-light: #f8f8f8;
  --text-color: #1c1c1c;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

.vat-note {
  font-weight: 600;
  color: var(--text-color);
}

.fees-section {
  padding: 60px 20px;
  background-color: var(--background-light);
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
}

.fees-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.fees-section .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #555;
}

.table-wrapper {
  overflow-x: auto;
  margin: 0 auto;
  background: var(--background-light);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.notary-fee-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  overflow: hidden;
  border-radius: 8px;
}

.notary-fee-table thead {
  background-color: var(--accent-color);
  color: var(--background-light);
  font-family: 'Montserrat', sans-serif;
}

.notary-fee-table th {
  white-space: normal;
  word-break: break-word;
}

.custom-list {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0;
}

.custom-list li {
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.desktop-only {
  display: inline;
}
.mobile-only {
  display: none;
}

.notary-fee-table th, .notary-fee-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}

.notary-fee-table tbody tr:last-child td {
  border-bottom: none;
}

.notary-fee-table th:first-child,
.notary-fee-table td:first-child {
  width: 60%;
}

.notary-fee-table th:last-child,
.notary-fee-table td:last-child {
  width: 40%;
}

.calculator-box {
  max-width: 500px;
  margin: 2rem auto;
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(202,164,51,0.1);
  text-align: center;
  border: 1px solid var(--primary-color-dark);
}

.calculator-label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.calculator-input {
  width: 100%;
  padding: 1rem 0;
  margin: 0 auto;
  font-size: 1rem;
  border: 1px solid var(--background-light);
  border-radius: 6px;
  outline: none;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease-in-out;
}

.calculator-input:focus {
  border-color: var(--accent-color);
}

.tax-result {
  font-weight: 600;
  color: #333;
  background: var(--background-light);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-top: 0.5rem;
  border: 1px solid #e3e3e3;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: inline;
  }

  .notary-fee-table td:last-child,
  .notary-fee-table th:last-child {
    text-align: center;
  }

  .notary-fee-table th {
    white-space: normal;
    word-break: break-word;
  }

  .notary-fee-table th:first-child,
  .notary-fee-table td:first-child {
    width: 70%;
  }

  .notary-fee-table th:last-child,
  .notary-fee-table td:last-child {
    width: 30%;
  }
}