
footer {
  position: relative;
  margin-top: 240px;
  background: #DDF344;
  padding: 0 40px;
}

footer::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  background: url("/img/contact_background.svg");
  background-size: 100%;
  z-index: -1;
}

footer .top-container {
  display: flex;
}

footer .left-side {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .left-side .title {
  font-size: 74px;
  color: #FFFFFF;
  font-family: 'Chewy', sans-serif;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.2);
  -webkit-text-stroke: 0.1px #8BAF50;
  width: fit-content;
  text-align: center;
}

footer .left-side .description {
  margin-top: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.25);
  text-align: center;
  color: #597B21;
  max-width: 670px;
}

.contact {
  margin-top: 24px;
  line-height: 1.6;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #597B21;
  text-align: center;
}

.contact .contact-button {
  position: relative;
  background: #4849E8;
  color: #FFFFFF;
  border: none;
  width: 300px;
  cursor: pointer;
  padding: 0;
}

.contact .contact-button .button-inner {
  max-width: fit-content;
  display: flex;
  align-items: center;
}

.contact .contact-button img {
  margin-right: 8px;
  height: 20px;
}

.contact p {
  margin-bottom: 8px;
}

.copy-toast {
  position: absolute;
  background: #4849E8;
  color: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
}

.copy-toast.show {
  opacity: 1;
  transform: translateY(-10px);
}


footer .right-side {
  display: flex;
  align-items: center;
}

footer .right-side img {
  height: 454px;
}

footer .copyright-section {
  padding: 60px 0 30px;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  gap: 8px;
}

footer .copyright-section .text {
  font-size: 14px;
  color: #A4A4A4;
}

@media (max-width: 1240px) {
  footer .top-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  footer .left-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 992px) {

  footer {
    margin-top: 140px;
  }

  footer::before {
    top: -100px;
  }

  footer .right-side {
    display: flex;
    align-items: center;
  }

  footer .right-side img {
    margin: 0 auto;
    width: 80%;
    height: unset;
  }

  footer .left-side .title {
    font-size: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }

  footer .left-side .description {
    margin-bottom: 0px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
}

@media (max-width: 767px) {
  footer {
    padding: 0 20px;
  }
}