newsletter-section {
   /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    color: white; /* Text color */
    padding: 100px 0; /* Vertical padding */
    text-align: center; /* Center the text */
  }

  .image-container {
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height */
    overflow: hidden;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area */
    opacity: 0.9; /* Reduce the opacity of the image */
  }

  .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the text and button */
    color: white;
    text-align: center;
    z-index: 1;
  }

  .overlay h2 {
    font-size: 36px;
    font-weight: bold;
  }

  .overlay button {
    margin-top: 20px;
  }

  .services-img{
    width: 100;
    height: 260px;
    object-fit: cover;
  }


  .btn-coffee{
    background-color: #4d2b1b;
    color:white;
    border: none;
  }

.btn-coffee:hover{
  background-color: #3a2115;
  color:white;
}
  

.btn-outline-caramel {
  background-color: transparent;
  color: #d3ab7b;
  border: 2px solid #d3ab7b;
}

.btn-outline-caramel:hover {
  background-color: #d3ab7b;
  color: #4d2b1b;
}