.treat-container {
  display: flex;
  gap: 40px;
  padding: 40px;
  max-width: 1512px;
  margin: auto;
  color: white;
  flex-wrap: wrap;
}

.treat-container.vertical {
  flex-direction: column;
}
a{
	color:var(--accent-color);
}


.treat-left {
  flex: 1;
  align-content: center;
  min-width: 300px;
}

.treat-title {
  width: 100%;
  text-align: left;
  padding: 0px 15px;
  font-size: 30px;
}
.treat-title:hover{
	color:var(--accent-color);
}

.treat-left h2 {
  font-size: 70px;
  margin-bottom: 20px;
}

.treat-left p {
  font-size: 30px;
  margin-bottom: 20px;
}
.what-we-treat-section a:hover, .what-we-treat-section a:focus, .what-we-treat-section a:active{
color:var(--accent-color) !important;
}
.treat-button {
  background: var(--accent-color);
  color: var(--text-accent-color);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.treat-button:hover {
  background: #143a79;
}

.treat-right {
  flex: 2;
  display: flex;
  gap: 20px;
  min-width: 300px;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.treat-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  transition: all 0.3s ease;
}

.treat-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1.25rem;
  color: white;
  cursor: pointer;
  text-decoration: none;
}

.treat-toggle:hover {
  opacity: 0.9;
}

.treat-toggle .arrow {
  transition: transform 0.3s ease;
}

.treat-item.open .treat-toggle .arrow {
  transform: rotate(180deg);
}

.treat-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}

.treat-item.open .treat-content {
  padding-top: 10px;
}

.treat-content p {
  font-size: 18px;
  color: #fff;
}

.treat-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

/* ====== Responsive Styles ====== */
@media (max-width: 1024px) {
  .treat-container {
    flex-direction: column;
    padding: 30px 20px;
  }

  .treat-left {
    text-align: center;
  }

  .treat-left h2 {
    font-size: 50px;
  }

  .treat-left p {
    font-size: 24px;
  }

  .treat-right {
    flex-direction: column;
  }

  .column {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .treat-left h2 {
    font-size: 40px;
  }

  .treat-left p {
    font-size: 20px;
  }

  .treat-title {
    font-size: 24px;
  }

  .treat-content p {
    font-size: 16px;
  }

  .treat-icon {
    width: 24px;
    height: 24px;
  }
}