
    .accordion-title {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
  color: #212529;
  margin-bottom: 10px;
}

.accordion-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

    .haegl-accordion {
  font-family:  Monument Grotesk, Fragment Mono, monospace ;
  background-color: #f8f9fa;
  padding: 80px 0;
}

.accordion-container {
  display: flex;
  width: 90%;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Left Column */
.accordion-tabs {
  flex: 1;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
}

.accordion-tab {
  padding: 20px 30px;
  font-size: 1.2rem;
  cursor: pointer;
  background: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-tab.active {
  background: #000;
  color: #fff;
  font-weight: bold;
}

.accordion-tab span.toggle {
  font-size: 1.5rem;
}

.accordion-tabs span:first-child {
  margin-right: 10px;
  font-weight: bold;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Right Column */
.accordion-panels {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.accordion-panel {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.accordion-panel.show {
  display: block;
}

.panel-block {
  padding: 25px 30px;
  font-size: 1.1rem;
  border-bottom: 1px solid #e0e0e0;
  color: #212529;
}

/* Custom background colors */
.green         { background: #8ef5a1; }
.lightgreen    { background: #abf7ae; }
.lime          { background: #cbf98f; }
.yellowgreen   { background: #f5f78c; }

.lightblue     { background: #caf0f8; }
.skyblue       { background: #ade8f4; }
.lavender      { background: #d0bfff; }

.coral         { background: #ffadad; }
.orange        { background: #ffd6a5; }
.peach         { background: #fff0b3; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

