/* Newsletter Styles */
.newsletter-section {
    background-color: #f4f4f4;
    padding: 40px 0;
    text-align: center;
  }
  
  .newsletter-heading {
    margin-bottom: 15px;
    color: #333;
    font-size: 24px;
  }
  
  .newsletter-description {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    outline: none;
  }
  
  .newsletter-button {
    padding: 10px 20px;
    background-color: #2a4b8d;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
  }
  
  .newsletter-button:hover {
    background-color: #e67e22;
  }
  
  /* Responsive styles */
  @media (max-width: 600px) {
    .newsletter-form {
      flex-direction: column;
      width: 90%;
    }
  
    .newsletter-input {
      border-radius: 4px;
      margin-bottom: 10px;
    }
  
    .newsletter-button {
      border-radius: 4px;
      width: 100%;
    }
  }