/**
 * Road Tax Calculator Styles
 * Designed to work with Danto Hugo theme
 * Inherits theme colors and respects dark/light mode
 */

/* ========================================
   Hero Section
   ======================================== */

.road-tax-tool__hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.breadcrumb a {
  color: var(--link-color, #3b82f6);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.5rem;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero__description {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--secondary-bg-color, #f9fafb);
  border-radius: 2rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.badge-icon {
  color: #10b981;
  font-weight: 700;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat__icon {
  font-size: 1.5rem;
}

.stat__value {
  font-size: 1.25rem;
  font-weight: 700;
}

.stat__label {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ========================================
   Calculator Form Section
   ======================================== */

.road-tax-tool__form-wrapper {
  padding: 2rem 0;
}

.calculator-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--background-color, #fff);
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.calculator-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.calculator-card__subtitle {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.road-tax-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--link-color, #3b82f6);
  color: #fff;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
}

.form-select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color, #e5e7eb);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: var(--background-color, #fff);
  color: var(--text-color, #000);
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: var(--link-color, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Radio Group Styles */
.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.radio-option {
  position: relative;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 2px solid var(--border-color, #e5e7eb);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  background: var(--background-color, #fff);
}

.radio-option input[type="radio"]:checked + .radio-label {
  border-color: var(--link-color, #3b82f6);
  background: rgba(59, 130, 246, 0.05);
}

.radio-icon {
  font-size: 1.5rem;
}

.radio-text {
  font-size: 0.875rem;
  font-weight: 600;
}

/* Input with Prefix */
.input-with-prefix {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 1rem;
  font-weight: 600;
  color: var(--text-color, #000);
  opacity: 0.7;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2rem;
  border: 2px solid var(--border-color, #e5e7eb);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: var(--background-color, #fff);
  color: var(--text-color, #000);
}

.form-input:focus {
  outline: none;
  border-color: var(--link-color, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-hint {
  font-size: 0.8125rem;
  opacity: 0.7;
  margin-top: -0.25rem;
}

/* Buttons */
.btn-calculate-tax,
.btn-reset {
  padding: 1rem 2rem;
  background: var(--link-color, #3b82f6);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.btn-calculate-tax:hover:not(:disabled),
.btn-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-calculate-tax:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-reset {
  background: var(--secondary-color, #6b7280);
}

.btn-icon {
  font-size: 1.25rem;
}

/* Loading Indicator */
.loading-indicator {
  text-align: center;
  padding: 2rem;
  margin-top: 1rem;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--link-color, #3b82f6);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   Result Section
   ======================================== */

.road-tax-tool__result {
  padding: 2rem 0;
}

.result-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--background-color, #fff);
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.result-header {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.result-header--low {
  background: #d1fae5;
  border: 2px solid #10b981;
}

.result-header--medium {
  background: #fef3c7;
  border: 2px solid #f59e0b;
}

.result-header--high {
  background: #fee2e2;
  border: 2px solid #ef4444;
}

.result-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.status-icon {
  font-size: 2rem;
}

.status-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.result-vehicle {
  font-size: 1.125rem;
  margin: 0;
  opacity: 0.8;
}

/* Breakdown Grid */
.result-breakdown {
  margin-bottom: 2rem;
}

.breakdown-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.breakdown-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--secondary-bg-color, #f9fafb);
  border-radius: 0.5rem;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breakdown-label {
  opacity: 0.8;
}

.breakdown-value {
  font-weight: 700;
  font-size: 1.125rem;
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  background: var(--link-color, #3b82f6);
  color: #fff;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Ranking Badge */
.result-ranking {
  text-align: center;
  margin-bottom: 2rem;
}

.ranking-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.ranking-badge--lowest {
  background: #d1fae5;
  color: #059669;
}

.ranking-badge--low {
  background: #dbeafe;
  color: #2563eb;
}

.ranking-badge--medium {
  background: #fef3c7;
  color: #d97706;
}

.ranking-badge--high {
  background: #fee2e2;
  color: #dc2626;
}

/* Savings Box */
.result-savings {
  margin-bottom: 2rem;
}

.savings-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #d1fae5;
  border: 2px solid #10b981;
  border-radius: 0.75rem;
}

.savings-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.savings-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #059669;
}

.savings-text {
  margin: 0 0 0.5rem 0;
}

.savings-note {
  opacity: 0.7;
  font-size: 0.875rem;
}

/* Details Grid */
.result-details {
  margin-bottom: 2rem;
}

.details-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.detail-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--secondary-bg-color, #f9fafb);
  border-radius: 0.5rem;
}

.detail-icon {
  font-size: 1.5rem;
}

.detail-title {
  font-size: 0.875rem;
  opacity: 0.7;
  margin: 0 0 0.25rem 0;
}

.detail-value {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

/* Result Info */
.result-info {
  padding: 1rem;
  background: var(--secondary-bg-color, #f9fafb);
  border-left: 4px solid var(--link-color, #3b82f6);
  border-radius: 0.25rem;
  margin-bottom: 2rem;
}

.info-text {
  margin: 0;
  font-size: 0.9375rem;
}

/* Result Actions */
.result-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
  background: var(--secondary-bg-color, #f9fafb);
  color: var(--text-color, #000);
  border: 2px solid var(--border-color, #e5e7eb);
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--link-color, #3b82f6);
  background: rgba(59, 130, 246, 0.05);
}

/* ========================================
   BH Series Checker Section
   ======================================== */

.road-tax-tool__bh-checker {
  padding: 3rem 0;
  background: var(--secondary-bg-color, #f9fafb);
}

.bh-checker-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--background-color, #fff);
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bh-header {
  text-align: center;
  margin-bottom: 2rem;
}

.bh-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bh-subtitle {
  opacity: 0.8;
}

/* BH Benefits */
.bh-benefits {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #dbeafe;
  border-radius: 0.75rem;
}

.benefits-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2563eb;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* BH Form */
.bh-checker-form {
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.btn-check-eligibility {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--link-color, #3b82f6);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-check-eligibility:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* BH Result */
.bh-result {
  margin-bottom: 2rem;
}

.bh-result-content {
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.bh-result--eligible {
  background: #d1fae5;
  border: 2px solid #10b981;
}

.bh-result--not-eligible {
  background: #fee2e2;
  border: 2px solid #ef4444;
}

/* Learn More */
.bh-learn-more {
  padding: 1.5rem;
  background: var(--secondary-bg-color, #f9fafb);
  border-radius: 0.75rem;
}

.learn-more-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.learn-more-list {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.learn-more-list li {
  margin-bottom: 0.5rem;
}

.learn-more-note {
  font-size: 0.9375rem;
  opacity: 0.8;
}

/* ========================================
   Comparison Table Section
   ======================================== */

.road-tax-tool__comparison {
  padding: 3rem 0;
}

.comparison-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.comparison-subtitle {
  text-align: center;
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* Table Controls */
.table-controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.control-label {
  font-weight: 600;
  font-size: 0.875rem;
}

.control-select,
.control-input {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border-color, #e5e7eb);
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

/* Table */
.table-wrapper {
  overflow-x: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--background-color, #fff);
}

.comparison-table thead {
  background: var(--link-color, #3b82f6);
  color: #fff;
}

.comparison-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  position: sticky;
  top: 0;
  cursor: pointer;
}

.comparison-table th.sortable:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sort-icon {
  margin-left: 0.5rem;
  opacity: 0.7;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.comparison-table tbody tr:hover {
  background: var(--secondary-bg-color, #f9fafb);
}

/* Table Legend */
.table-legend {
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--secondary-bg-color, #f9fafb);
  border-radius: 0.5rem;
}

.legend-items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.legend-color {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
}

.legend-color--lowest { background: #d1fae5; }
.legend-color--low { background: #dbeafe; }
.legend-color--medium { background: #fef3c7; }
.legend-color--high { background: #fed7aa; }
.legend-color--highest { background: #fee2e2; }

/* Comparison Tip */
.comparison-tip {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #d1fae5;
  border: 2px solid #10b981;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.tip-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.tip-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #059669;
}

.tip-text {
  margin: 0 0 0.5rem 0;
}

.tip-sub {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Export Options */
.export-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__stats {
    gap: 1rem;
  }

  .calculator-card,
  .result-card,
  .bh-checker-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .result-actions {
    flex-direction: column;
  }

  .btn-secondary {
    min-width: auto;
  }

  .table-controls {
    flex-direction: column;
  }

  .control-group {
    width: 100%;
  }

  .control-select,
  .control-input {
    width: 100%;
  }

  .content-section-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-title {
    font-size: 1rem;
  }

  .faq-card.faq-active .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }

  .content-section-card h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.75rem;
  }

  .calculator-card,
  .result-card,
  .bh-checker-card {
    padding: 1rem;
    border-radius: 0.5rem;
  }

  .btn-calculate-tax,
  .btn-reset,
  .btn-check-eligibility {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }

  .savings-box {
    flex-direction: column;
  }

  .comparison-tip {
    flex-direction: column;
  }

  .content-section-card {
    padding: 1rem;
    border-radius: 0.5rem;
  }

  .faq-question {
    padding: 0.875rem 1rem;
  }

  .faq-title {
    font-size: 0.9375rem;
  }

  .content-section-card h2 {
    font-size: 1.375rem;
  }
}

/* ========================================
   Content Section Cards
   ======================================== */

.content-section-card {
  background: var(--background-color, #fff);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.content-section-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.content-section-card h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color, #111827);
  border-bottom: 3px solid var(--link-color, #3b82f6);
  padding-bottom: 0.75rem;
}

.content-section-card p,
.content-section-card ul,
.content-section-card ol {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-section-card ul,
.content-section-card ol {
  padding-left: 1.5rem;
}

/* ========================================
   FAQ Accordion Styling
   ======================================== */

/* FAQ Card */
.faq-card {
  background: var(--background-color, #fff);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color, #e5e7eb);
}

.faq-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* FAQ Question Header */
.faq-question {
  padding: 1.25rem 1.5rem;
  background: var(--secondary-bg-color, #f9fafb);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: var(--hover-bg-color, #f3f4f6);
}

.faq-card.faq-active .faq-question {
  background: var(--link-color, #3b82f6);
  color: #fff;
}

/* FAQ Icon */
.faq-icon {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-card.faq-active .faq-icon {
  transform: rotate(90deg);
}

/* FAQ Title */
.faq-title {
  font-size: 1.125rem;
  font-weight: 600;
  flex: 1;
}

/* FAQ Answer Wrapper - SEO Friendly (no display:none) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-card.faq-active .faq-answer {
  max-height: 5000px; /* Large enough for any content */
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* FAQ Answer Content */
.faq-answer-content {
  padding-top: 1rem;
}

.faq-answer-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  line-height: 1.7;
}

.faq-answer-content li {
  margin-bottom: 0.5rem;
}

.faq-answer-content table {
  width: 100%;
  margin: 1rem 0;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.faq-answer-content th,
.faq-answer-content td {
  padding: 0.75rem;
  border: 1px solid var(--border-color, #e5e7eb);
  text-align: left;
}

.faq-answer-content th {
  background: var(--secondary-bg-color, #f9fafb);
  font-weight: 600;
}

.faq-answer-content strong {
  font-weight: 600;
  color: var(--heading-color, #111827);
}

/* ========================================
   Dark Mode Support
   ======================================== */

[data-color-mode="dark"] .calculator-card,
[data-color-mode="dark"] .result-card,
[data-color-mode="dark"] .bh-checker-card {
  background: var(--background-color-alt, #1f2937);
  border-color: var(--border-color, #374151);
}

[data-color-mode="dark"] .detail-card,
[data-color-mode="dark"] .result-info,
[data-color-mode="dark"] .bh-learn-more {
  background: var(--secondary-bg-color, #374151);
}

[data-color-mode="dark"] .comparison-table {
  background: var(--background-color-alt, #1f2937);
}

[data-color-mode="dark"] .comparison-table td {
  border-color: var(--border-color, #4b5563);
}

[data-color-mode="dark"] .content-section-card,
[data-color-mode="dark"] .faq-card {
  background: var(--background-color-alt, #1f2937);
  border-color: var(--border-color, #374151);
}

[data-color-mode="dark"] .faq-question {
  background: var(--secondary-bg-color, #374151);
}

[data-color-mode="dark"] .faq-question:hover {
  background: var(--hover-bg-color, #4b5563);
}

/* Print Styles */
@media print {
  .road-tax-tool__form-wrapper,
  .btn-reset,
  .export-options {
    display: none;
  }

  .road-tax-tool__result {
    page-break-inside: avoid;
  }
}
