/*===========================================================================================
    Start Newsletter Area
=============================================================================================*/
.newsletter.style1 {
  background-color: #111827;
  padding: 64px 0px;
  text-align: center;
}

.newsletter.style1 .newsletter-title {
  color: var(--white-color);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.newsletter.style1 .newsletter-description {
  color: #d1d5db;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.newsletter.style1 .newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  gap: 16px;
  margin-top: 40px;
}

.newsletter.style1 .newsletter-form .newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 16px;
  background-color: #ffffff;
  color: #333333;
  outline: none;
  border-radius: 8px;
  height: 48px;
}

.newsletter.style1 .newsletter-form .newsletter-input::placeholder {
  color: #999999;
}

.newsletter.style1 .newsletter-form .newsletter-button {
  padding: 14px 24px;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 48px;
}

.newsletter.style1 .newsletter-button:hover {
  background-color: #1d4ed8;
}

.newsletter.style1 .newsletter-disclaimer {
  color: #8b95a1;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 auto;
  margin-top: 16px;
}
.newsletter.style1 .newsletter-disclaimer a {
  color: var(--primary-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .newsletter.style1 {
    padding: 40px 20px;
  }

  .newsletter.style1 .newsletter-title {
    font-size: 28px;
  }

  .newsletter.style1 .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter.style1 .newsletter-input {
    border-radius: 5px;
    width: 100%;
  }

  .newsletter.style1 .newsletter-button {
    border-radius: 5px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .newsletter.style1 .newsletter-title {
    font-size: 24px;
  }

  .newsletter.style1 .newsletter-description {
    font-size: 15px;
  }
}
/*===========================================================================================
    End Newsletter Area
=============================================================================================*/
