/* Mobile responsiveness for Currency Toggle */
@media (max-width: 600px) {
  .pricing-header {
    margin-bottom: 24px;
    gap: 8px;
  }

  .currency-toggle {
    padding: 3px;
    gap: 4px;
    margin-top: 24px;
    margin-bottom: 0;
    border-radius: 22px;
  }

  .currency-btn {
    padding: 3px 8px; /* Compact padding for small screens */
    font-size: 0.78rem; /* Scaled down text size */
    border-radius: 14px;
    border-width: 2px;
  }
}

/* Pricing Table Bullet Points Styling */
.pricing-bullets {
  list-style-type: disc;     /* Ensures standard round bullet markers appear */
  margin: 0;
  padding-left: 1.2rem;       /* Adds left spacing so bullet icons fit inside the cell */
  text-align: left;           /* Keeps text aligned properly */
}

.pricing-bullets li {
  font-size: 0.85rem;          /* Slightly lowers the font size relative to standard body text */
  line-height: 1.2;           /* Maintains readable spacing between multi-line bullet points */
  margin-bottom: 0.25rem;     /* Adds a small gap between individual list items */
  color: #5B4636;             /* Matches your site's primary text color */
}

.pricing-bullets li:last-child {
  margin-bottom: 0;           /* Removes extra bottom spacing on the final item */
}

@media (max-width: 600px) {
  /* Stack table components vertically */
  .pricing-table, 
  .pricing-table thead, 
  .pricing-table tbody, 
  .pricing-table th, 
  .pricing-table td, 
  .pricing-table tr {
    display: block;
    width: 100%;
  }

  /* Hide table header on mobile */
  .pricing-table thead {
    display: none;
  }

  /* Style each row as a distinct card */
  .pricing-table tbody tr {
    margin-bottom: 1.5rem;
    border: 1px solid #E0D3C1;
    border-radius: 8px;
    background-color: #FFFDF9;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
  }

  /* Reset padding and borders on individual cells */
  .pricing-table td {
    padding: 0.5rem 0;
    border: none;
    text-align: left;
  }

  /* Highlight and enlarge pricing values */
  .pricing-table td .price-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5B4636;
    display: block;
    margin: 0.25rem 0;
  }

  /* Make enrollment buttons span full width */
  .pricing-table td .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .pricing-bullets li {
    font-size: 0.7rem;          /* Slightly lowers the font size relative to standard body text */
    line-height: 1.2;           /* Maintains readable spacing between multi-line bullet points */
    margin-bottom: 0.25rem;     /* Adds a small gap between individual list items */
    color: #5B4636;             /* Matches your site's primary text color */
  }
}