
.nav a.current-page {
    opacity: 1 !important;
    font-weight: 700;
    text-decoration: underline;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    padding: 5px 10px;
    margin: 0 2px;
}

/* Footer current page styling */
footer a.current-page {
    opacity: 1 !important;
    font-weight: 700;
    text-decoration: underline;
}

.header-logo-container {
    background: white;
    border-radius: 50%;
    width: 80px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-logo-container img {
    width: 45px;
    height: 35px;
    margin: 12px;
}

.tally-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.tally-form-container h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.tally-form-container p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

/* Styling for the Comparison Table */

.comparison-table {
  /* Font and color styles now scoped to the table */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.6;
  color: #333; /* Sets default text color for the table */

  /* Original table structure styles */
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
}

.comparison-table thead tr {
  background-color: #009879; /* You can change this color */
  color: #ffffff;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 15px;
  border: 1px solid #dddddd;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.comparison-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.comparison-table tbody tr:last-of-type {
  border-bottom: 2px solid #009879; /* You can change this color */
}

/* Style for the first column to make it stand out */
.comparison-table td:first-child {
  font-weight: bold;
}