.quoteContainer {
  position: relative;
  width: 100%;
  min-height: 320px;
  /* Replace with your image path or import */
  background-image: url('/assets/images/nutricos_banner/banner_03.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 80px;
  box-sizing: border-box;
  border-top: 6px solid #ffcc00;
}

/* Dark overlay over the background image */
.quoteContainer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.quoteContainer .content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: auto;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.quoteContainer .description {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.quoteContainer .contactInfo {
  font-size: 0.95rem;
  color: #ffcc00;
  font-style: italic;
  margin-bottom: 28px;
}

.quoteContainer .emailLink {
  color: #ffcc00;
  text-decoration: underline;
}

.quoteContainer .emailLink:hover {
  opacity: 0.85;
}

.quoteContainer .separator {
  margin: 0 4px;
}

.quoteContainer .phone {
  color: #ffcc00;
}

.quoteContainer .quoteButton {
  background-color: #fbd028;
  color: #111111;
  border: none;
  padding: 12px 70px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.quoteContainer .quoteButton:hover {
  background-color: #e5bd1d;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .quoteContainer {
    padding: 30px 20px;
  }

  .quoteContainer .description {
    font-size: 1rem;
  }

  .quoteContainer .quoteButton {
    width: 100%;
  }
}