.title_background {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to right, #004e92, #000428);
  color: #ffffff;
}

.title_background .title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 1.5px;
}

.text_background {
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  background-color: #f4f4f4;
  border-top: 4px solid #004e92;
  border-bottom: 4px solid #004e92;
}

.text_background .text {
  font-size: 1.1rem;
  color: #333333;
  margin: 0 auto;
  max-width: 1000px;
  text-align: justify;
  line-height: 1.8;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text_background .text strong {
  font-weight: bold;
  color: #004e92;
}

.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;
    padding: 20px;
  }
}