/* Newsletter Section */
.newsletter-section {
    background: #000;
    padding: 0 0 80px 0;
}

/* Newsletter Outer Container */
.newsletter-outer {
    background: #131316;
    border-radius: 20px 20px 0 0;
    height: 441px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

/* Newsletter Inner Container */
.newsletter-inner {
    background: #EF6900;
    border-radius: 30px;
    width: 1209px;
    max-width: calc(100% - 40px);
    height: 351px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    text-align: left;
}

.newsletter-heading {
    font-family: "Anton", sans-serif;
    font-size: 4.3rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0;
    line-height: 1.1;
    text-transform: capitalize;
    flex-shrink: 0;
    letter-spacing: 0;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.newsletter-input {
    background: #F38E40;
    border: none;
    border-radius: 100px;
    padding: 10px 24px 10px 24px;
    width: 313px;
    height: 65px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: black;
}

.newsletter-input::placeholder {
    color: black;
}

.newsletter-input:focus {
    outline: none;
    background: white;
}

.newsletter-btn {
    background: #131316;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 23px 59px 23px 59px;
    height: 65px;
    width: auto;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #131316;
    transform: scale(1.05);
}
@media (max-width: 768px) {
  .newsletter-section {
    padding: 0 0 60px 0;
  }

  .newsletter-outer {
    height: auto;
    padding: 40px 20px;
    border-radius: 20px 20px 0 0;
  }

  .newsletter-inner {
    width: 100%;
    height: auto;
    padding: 40px 30px;
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .newsletter-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .newsletter-form {
    flex-direction: column; /* Stack vertically */
    align-items: center;
    width: 100%;
    gap: 15px;
  }

  .newsletter-input {
    width: 90%;
    max-width: 350px;
    height: 50px;
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  .newsletter-btn {
    width: 90%;
    max-width: 200px;
    height: 50px;
    padding: 10px 0;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .newsletter-inner {
    padding: 30px 20px;
  }

  .newsletter-heading {
    font-size: 1.8rem;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
    max-width: none;
    height: 45px;
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
