.newsletter-container {
  text-align: left;
  padding-top: 0;
}

.newsletter-container h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.email-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid black;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
}

.subscribe-button {
  background: black;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.subscribe-button:hover {
  opacity: 0.8;
}

.pi-dark-mode .subscribe-button {
  background: white;
  color: black;
}

@media screen and (min-width: 750px) {
  .newsletter-container {
    padding: 20px;
}
}




@media screen and (max-width: 749px) { 
  .email-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid black;
    border-radius: 25px;
    font-size: 12px;
    outline: none;
}

.subscribe-button {
  background: black;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 13px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

}