
/* Center the accordion container */
.accordion {
  max-width: 800px;
  margin: 40px auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  font-family: sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Each accordion section */
.accordion-item {
  border-top: 1px solid #e0e0e0;
}

/* Header design */
.accordion-header {
  background-color: #e6f2ff;
  /* Light blue */
  color: #003366;
  /* Dark text */
  cursor: pointer;
  padding: 20px;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background-color: #d4e9ff;
}

/* Plus/minus symbol */
.accordion-arrow {
  font-size: 22px;
  font-weight: bold;
}

/* Accordion body */
.accordion-content {
  display: none;
  padding: 18px 20px;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.accordion {
  max-width: 1800px;
  /* or use 100% if you want full width */
  width: 100%;
  margin: 0 auto;
}



/* Hide Sections */
[data-section-id="59492000000280062"],
[data-section-id="59492000000280074"],
[data-section-id="59492000000280085"],
[data-section-id="59492000000280095"],
[data-section-id="59492000000280105"] {
  display: none;

}

