.title_background {
  background: linear-gradient(135deg, #DCE8FF, #B6C6FF);
  color: #2C2A4A;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.title_background::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100px;
  background-color: #F7F8FA;
  border-radius: 50%;
  z-index: 1;
}

.title_background .title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  color: #2C2A4A;
  line-height: 1.2;
}

.text_background {
  min-height: 100vh;
  padding: 60px 20px;
  background-color: #F7F8FA;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.text_background::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100px;
  background: linear-gradient(135deg, #DCE8FF, #B6C6FF);
  border-radius: 50%;
  z-index: 1;
}

.text_background .text {
  font-size: 1.1rem;
  color: #4A4A7D;
  margin: 0 auto;
  max-width: 1000px;
  text-align: justify;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.text_background .text strong {
  font-weight: bold;
  color: #2C2A4A;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 2rem;
  }

  .text_background .text {
    font-size: 1rem;
    line-height: 1.7;
  }
}