.container {
  max-width: 800px !important;
  padding: 40px 40px !important;
  line-height: 1.6;
  border-radius: 0.5rem; /* 8px border-radius */
  border: 2px solid rgba(224, 61, 80, 0.3); /* Soft border using E03D50 with some transparency */
  box-shadow: 0 4px 10px rgba(224, 61, 80, 0.15); /* Shadow with E03D50 for subtle depth */
}

.card {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

#response {
  font-size: 16px;
  font-weight: bold;
}

#response.success {
  color: #28a745;
}

#response.error {
  color: #dc3545;
}

.btn {
  background-color: #e03d50;
  color: white;
  font-weight: bold;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(223, 25, 25, 1) 0%, rgba(191, 49, 129, 1) 100%);;
  border: none;
  transition: opacity 0.3s ease;
  font-size: 1rem;
}

.get-in-touch {
  font-size: 1.75rem;
  font-weight: 500;
}

/* Responsive Design for mobile devices */
@media (max-width: 576px) {
  .card {
    padding: 20px; /* Reduce padding for mobile devices */
  }

  .form-control {
    font-size: 14px; /* Make form inputs smaller on mobile */
  }

  .btn {
    background-color: #e03d50;
    color: white;
    font-weight: bold;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(223, 25, 25, 1) 0%, rgba(191, 49, 129, 1) 100%);;
    border: none;
    transition: opacity 0.3s ease;
    font-size: 1rem;
  }

  .container {
    max-width: 350px !important;
    padding: 20px 20px !important;
  }
}

/* Responsive Design for tablets */
@media (min-width: 576px) and (max-width: 768px) {
  .card {
    padding: 30px;
  }

}

/* Responsive Design for Desktop */
@media (min-width: 768px) {
  .card {
    padding: 40px;
  }
}
