/* ===== County Profile Accordion Styles ===== */

.county-profile {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  background: #fffaf4;
}

/* Accordion Category Buttons */
.accordion {
  background-color: #c69c6d;
  color: #fff;
  cursor: pointer;
  padding: 14px 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.accordion:hover {
  background-color: #a67c52;
}

.accordion.active {
  background-color: #8b5e3c;
}

/* Hidden/Shown Panels */
.panel {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  background-color: #fff8f0;
  border: 1px solid #e2d2b5;
  border-top: none;
  transition: max-height 0.3s ease, padding 0.3s ease;
  /* Remove display: none; */
}

/* Office Entry Block */
.office-entry {
  padding: 12px 0;
  border-bottom: 1px solid #e2d2b5;
}

.office-entry:last-child {
  border-bottom: none;
}

/* Office Name */
.office-entry h3 {
  margin: 0 0 5px;
  color: #5a3e2b;
  font-size: 1.1rem;
}

/* Office Details */
.office-details {
  font-size: 0.95rem;
  color: #333;
}

.office-details strong {
  color: #5a3e2b;
}

/* Phone Details */
.phone {
  margin-left: 1em;
  font-weight: normal;
  color: #444;
  font-size: 0.95em;
}


/* Responsive */
@media (max-width: 768px) {
  .accordion {
    font-size: 1rem;
  }
  .office-details {
    font-size: 0.9rem;
  }
}
