.color {
    background-color: var(--blue-color);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.general {
    grid-template-columns: 1fr;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1280px;
    padding: 40px 1rem;
    gap: 20px;
}
.item:nth-child(1) {
    grid-column: 1/1;
    grid-row: 1/1;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
    color: white;
  }
  
  .item:nth-child(1) h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
  }
.item:nth-child(2) {
    grid-column: 1/1;
    grid-row: 2/2;
  }
  
  .item:nth-child(2) img {
    width: 100%;
    border-radius: 10px;
  }
  @media (min-width: 768px) {
    .general {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      max-width: 1280px;
      place-items: center;
    }
  
    .item:nth-child(1) {
      grid-column: 2/2;
      grid-row: 1/1;
      max-width: 100%;
      overflow: hidden;
      place-items: center;
    }
  
    .item:nth-child(1) h1 {
      color: white;
      text-align: center;
      font-family: "Inter", sans-serif;
      font-size: 45px;
      margin: 0;
      padding: 1rem 1rem;
    }
  
    .item:nth-child(1) p {
      color: white;
      font-family: "Inter", sans-serif;
      font-size: 18px;
      text-align: left;
      padding: 1rem 1rem;
      margin: 0;
    }
  
    .item:nth-child(2) {
      grid-column: 1/1;
      grid-row: 1/1;
      margin: 0 auto;
      overflow: hidden;
    }
  }
