section.section-about {
  display: flex;
  padding: 4rem 2rem;
  background: var(--primary-color);
  align-items: center;
  width: 100%;
  flex-direction: column;
  gap: 2rem;
}

.row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Text blocks */
.text-block {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-color);
}

.text-block p {
  margin: 0;
  max-width: 630px;
}

/* Graphic blocks */
.graphic-block {
  flex: 1;
  text-align: center;
}

.graphic-block img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* Reverse row for alternating layout */
.row.reverse {
  flex-direction: row-reverse;
}

/* Centered row for the last section */
.row.center {
  flex-direction: column;
  text-align: center;
}

.text-block.top {
  margin: 2rem 0;
  max-width: 1000px;
}

.graphic-block.bottom img {
  margin-top: 1rem;
}
.team-section {
  width: 100%;
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f9f9f9; /* Optional background color */
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-member {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 500px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-member p {
  margin: 0.5rem 0;
}

.team-member a {
  color: #0073e6;
  text-decoration: none;
}

.team-member a:hover {
  text-decoration: underline;
}

.description {
  font-size: 0.9rem;
  color: #666;
}

.call-to-action {
  display: flex;
  background: var(--accent-blue);
  padding: 4rem 2rem;
  text-align: center;
}
.call-to-action .container {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.call-to-action h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.call-to-action p {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.call-to-action .btn {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 1rem 2rem;
  font-size: 1.2rem;
}

.call-to-action .btn:hover {
  background: var(--accent-color);
  color: var(--neutral-color);
}

/* Responsive design */
@media (max-width: 768px) {
  .row,
  .row.reverse {
    flex-direction: column;
  }

  .row.center {
    text-align: left;
  }
  .text-block p {
    text-align: left;
  }
  .team-container {
    flex-direction: column;
    align-items: center;
  }
  .team-member {
    max-width: 320px;
  }
  .hero-content {
    margin-top: 0rem;
  }
}
