.title_background {
  background-color: #007bff; 
  padding: 40px 20px;
  text-align: center;
  border-bottom: 3px solid #0056b3;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 200px;
  overflow: hidden;
}

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

.text_background {
  background-color: #ffffff; 
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  color: #003366; 
}

.text_background .text {
  font-size: 1.1rem;
  margin: 0 auto;
  max-width: 1000px;
  text-align: justify;
  line-height: 1.8;
  color: #003366; 
}

.text_background .text strong {
  font-weight: bold;
  color: #007bff; 
}

.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;
  }
}