.title_background {
  padding: 40px 20px;
  text-align: center;
  border-bottom: 3px solid #ff4081;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.text_background {
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  background: #ffffff;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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