.newsletter-info-block {
      display: flex;
      gap: 2rem;
      max-width: 1550px;
      margin: 0 auto;
      padding: 4rem 1%;
}

.newsletter-info-block .newsletter-container,
.info-container {
  flex: 1;

}

.newsletter-info-block .content-wrapper {
  max-width: 750px;
  position: relative;
  margin: 0 auto;
  padding: 0;
}

.newsletter-info-block .title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  display: flex;
  align-items: center;

  width: max-content;}

  .newsletter-info-block .title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #e65f0d;
}


.newsletter-info-block .description {
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.newsletter-form .form-group {
  display: flex;
  gap: 0.5rem;
}

input[type="email"] {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ccc;
}

.submit-button {
  background-color: #e65f0d;
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.subscribe-button {
  display: inline-block;
  background-color: #8B7355;
  color: white;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .newsletter-info-block {
    flex-direction: column;
  }
}
