/* Simple Header */
.simple-header {
  background-color: #81bb8e;
  padding: 2rem 1rem;
  text-align: center;
  color: white;
}

.simple-header h1 {
  font-size: 2.5rem;
  margin: 0;
}

/* Offer Form */
.offer-form-section {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #e9f5ec;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.offer-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-form label {
  font-weight: 600;
  color: #2d4739;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.offer-form textarea {
  resize: none;
}

.offer-form button.bttn {
  background-color: #74c69d;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.offer-form button.bttn:hover {
  background-color: #52b788;
}

/* Footer */
.site-footer {
  background-color: #81bb8e;
  color: #ffffff;
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-social {
  margin-bottom: 1rem;
}

.footer-social a {
  margin: 0 10px;
  display: inline-block;
}

.footer-social img {
  height: 24px;
  filter: invert(100%);
  transition: transform 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.2);
}

.footer-copy {
  font-size: 0.9rem;
  margin: 0;
  color: #f0fff4;
}
/* Remove white space under footer */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
@media (max-width: 600px) {
  /* Header */
  .simple-header h1 {
    font-size: 1.8rem;
  }

  /* Form container */
  .offer-form-section {
    padding: 1.5rem 1rem;
    margin: 1.5rem 1rem;
  }

  .offer-form label {
    font-size: 0.95rem;
  }

  .offer-form input,
  .offer-form select,
  .offer-form textarea {
    font-size: 1rem;
    padding: 0.6rem;
  }

  .offer-form button.bttn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
  }

  /* Footer */
  .footer-logo img {
    height: 45px;
  }

  .footer-social img {
    height: 20px;
  }

  .footer-copy {
    font-size: 0.8rem;
  }
}
#form-message {
  margin-top: 15px;
  font-size: 14px;
  font-weight: bold;
}

.footer-logo img{

  border-radius: 25px !important;
}