.container-seo {
    position: relative;
    width: 100%;
    /* height: 400px; */
    overflow: hidden;
  }
  
  .container img {
    width: 100%;
    height: auto;
  }
  
  .text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  
  .text-container h1 {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .text-container p {
    font-size: 10px;
    line-height: 1.5;
  }
  
  .text-container h2 {
    font-size: 9px;
    line-height: 1.5;
  }
  
  @media(max-width: 767px) {
      .text-container h1 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  
  .text-container h2 {
    font-size: 7px;
    line-height: 1.5;
  }
  
  
  .text-container p {
    font-size: 8px;
    line-height: 1.5;
  }
  
  }