.title_background {
  background: linear-gradient(135deg, #1a1a1a, #333333);
  padding: 180px 20px;
  text-align: center;
  color: #ffffff;
  border-bottom: 3px solid #ffcc00;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.title_background .title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
  color: #ffcc00;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
}

.text_background {
  background: linear-gradient(135deg, #111111, #222222);
  min-height: 80vh;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
  .title_background {
    padding: 150px 20px;
  }

  .title_background .title {
    font-size: 2rem;
  }

  .text_background {
    padding: 60px 20px;
  }

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