
/* Header Section */
.ranchana-header {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px;
  border-bottom: 4px solid #16a085;
}

.ranchana-title {
  font-size: 36px;
  margin: 0;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Section Styles */
.section-info,
.section-structure,
.section-election,
.section-deputy-election,
.section-expense {
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-heading {
  font-size: 24px;
  color: #34495e;
  margin-bottom: 15px;
  font-weight: 700;
  border-bottom: 2px solid #16a085;
  padding-bottom: 5px;
}

.sub-heading {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.section-text strong {
  color: #333;
  font-weight: 700;
}

/* Table Styles */
.data-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.data-table th,
.data-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.table-heading {
  background-color: #16a085;
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.table-data {
  font-size: 14px;
  color: #333;
}

.data-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.data-table tr:hover {
  background-color: #f1f1f1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ranchana-title {
    font-size: 28px;
  }

  .section-heading {
    font-size: 22px;
  }

  .sub-heading {
    font-size: 18px;
  }

  .section-text {
    font-size: 14px;
  }

  .data-table th,
  .data-table td {
    padding: 8px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .ranchana-title {
    font-size: 24px;
  }

  .section-heading {
    font-size: 20px;
  }

  .sub-heading {
    font-size: 16px;
  }

  .section-text {
    font-size: 12px;
  }

  .data-table th,
  .data-table td {
    padding: 6px;
    font-size: 10px;
  }
}