.title_background {
  background: linear-gradient(135deg, #ffdd00, #ffeb3b);
  padding: 180px 20px;
  text-align: center;
  color: #222;
  border-bottom: 5px solid #0056b3;
  box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.title_background .title {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
  color: #0056b3;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  animation: bounceIn 1s ease-in-out;
}

.title_background::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  opacity: 0.7;
  transform: rotate(-15deg);
}

.title_background::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.7;
  transform: rotate(15deg);
}

.text_background {
  background: linear-gradient(135deg, #ffeb3b, #ffdd00);
  min-height: 80vh;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  color: #222;
  position: relative;
  overflow: hidden;
}

.text_background::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 30px;
  font-size: 4rem;
  opacity: 0.8;
  transform: rotate(-10deg);
}

.text_background::after {
  content: "";
  position: absolute;
  bottom: 50px;
  right: 30px;
  font-size: 4rem;
  opacity: 0.8;
  transform: rotate(10deg);
}

.text_background .text {
  font-size: 1.3rem;
  margin: 0 auto;
  max-width: 1000px;
  text-align: justify;
  line-height: 1.9;
  color: #222;
  font-weight: bold;
}

.text_background .text strong {
  font-weight: bold;
  color: #0056b3;
  text-shadow: 2px 2px 5px rgba(0, 86, 179, 0.3);
}

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

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

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

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

  .text_background {
    padding: 80px 20px;
  }

  .text_background .text {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}