.contact-section {
  position: relative;
  color: #fff;
}

.contact-headline-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.contact-headline-container .line {
  width: 535px;
  height: 3px;
  background: #a855f7;
}

.contact-headline {
  font-size: 90px;
  color: #ffffff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-left h3 {
  font-size: 32px;
}

.contact-left {
  margin-left: 100px;
}

.contact-left p {
  font-size: 16px;
  color: #cbd5e1;
  text-align: start;
  line-height: 1.6;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

textarea {
  max-height: 230px;
}

input {
  max-height: 78px;
}

.contact-right input {
  padding: 14px 16px;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  border-color: #8a3ffc;
  outline: none;
  transition: 0.3s;
  max-width: 617px;
  max-height: 78px !important;
  box-sizing: border-box;
}

.contact-right textarea {
  padding: 14px 16px;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  border-color: #8a3ffc;
  outline: none;
  transition: 0.3s;
  max-width: 617px;
  max-height: 202px;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: #64748b;
}

.contact-right input:focus,
.contact-right textarea:focus {
  border-color: #a855f7;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.checkbox {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.checkbox input {
  margin-top: 4px;
  accent-color: #22c55e;
}

.checkbox a {
  color: #a855f7;
  text-decoration: none;
}

.contact-purple-shadow {
  position: absolute;
  height: 500px;
  top: 230px;
  left: 0;
  z-index: 0;
}

.contact-right button {
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #9ca3af;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  max-width: 617px;
}

.contact-right button:hover {
  background: #a855f7;
}

.go-up-arrow {
  display: none;
}

.footer {
  position: relative;
  width: 100%;
  background-color: #131c2f;
  border-top: 2px solid #70e61c;
  padding: 60px 80px 40px 80px;
  margin-top: 201px;
  z-index: 5;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.footer-legal {
  font-size: 14px;
  text-align: justify;
  color: #cbd5e1;
  margin: 0;
}

.footer-center {
  text-align: center;
}

.footer-copyright {
  font-size: 16px;
  color: #cbd5e1;
  margin: 0;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.footer-social a:hover {
  transform: scale(1.15);
}

.footer-social img {
  width: 24px;
  height: 24px;
}

@media (min-width: 1750px) and (max-width: 1850px) {
  .contact-left {
    margin-left: 0px;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
  .contact-right {
    margin-right: 70px;
  }

  .contact-headline {
    font-size: 70px;
  }
}

@media (min-width: 1100px) and (max-width: 1199px) {
  .contact-right {
    margin-right: 70px;
  }
}

@media (min-width: 1000px) and (max-width: 1099px) {
  .contact-headline {
    font-size: 60px;
  }

  .contact-right form {
    margin-right: 70px;
  }
}

@media (min-width: 900px) and (max-width: 999px) {
  .contact-headline-container h2 {
    font-size: 60px;
  }

  .contact-right form {
    margin-right: 70px;
  }
}

@media (min-width: 800px) and (max-width: 899px) {
  .contact-headline {
    font-size: 50px;
  }

  .contact-headline-container .line {
    width: 328px !important;
  }

  .contact-right form {
    margin-right: 50px;
  }
}

@media (min-width: 700px) and (max-width: 799px) {
  .contact-headline {
    font-size: 40px;
  }

  .contact-headline-container .line {
    width: 249px !important;
  }

  .contact-right form {
    margin-right: 50px;
  }

  .contact-left h3 {
    font-size: 24px !important;
  }
}

@media (min-width: 600px) and (max-width: 699px) {
  .contact-headline {
    font-size: 40px;
  }

  .contact-headline-container .line {
    width: 200px !important;
  }

  .contact-right form {
    margin-right: 50px;
  }

  .contact-left h3 {
    font-size: 24px !important;
  }

  .contact-purple-shadow {
    height: 270px;
    top: 420px;
  }
}

@media (min-width: 500px) and (max-width: 599px) {
  .contact-headline {
    font-size: 28px;
  }

  .contact-headline-container .line {
    width: 187px !important;
  }

  .contact-right form {
    margin-right: 28px;
  }

  .contact-left h3 {
    font-size: 24px !important;
  }

  .contact-left {
    margin-left: 35px !important;
  }

  .contact-container {
    gap: 20px !important;
  }

  .footer {
    margin-top: 130px !important;
  }
}



@media (max-width: 499px) {
  .contact-headline {
    font-size: 28px;
  }

  .contact-headline-container .line {
    width: 187px !important;
  }

  .contact-right form {
    margin-right: 28px;
  }

  .contact-left h3 {
    font-size: 24px !important;
  }

  .contact-left {
    margin-left: 35px !important;
  }

  .contact-container {
    gap: 20px !important;
  }

  .footer {
    margin-top: 130px !important;
  }
}

@media (max-width: 499px) {
  .contact-purple-shadow {
    height: 250px;
    left: 0;
    bottom: -200px;
    top: auto;
  }

  .contact-headline {
    font-size: 45px;
  }

  .contact-headline-container .line {
    width: 30px !important;
  }

  .contact-left h3 {
    font-size: 23px !important;
    color: white;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-right form {
    margin-right: 0;
    max-width: 370px !important;
  }

  .contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .go-up-arrow {
    display: block;
    position: absolute;
    right: 32px;
    bottom: -80px;
    width: 45px;
    z-index: 10;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    display: contents;
  }

  .footer-logo {
    order: 1;
  }

  .footer-copyright {
    order: 2;
    margin: 0 !important;
  }

  .footer-social {
    order: 3;
    justify-content: center;
    width: 100%;
    margin: 0 !important;
  }

  .footer-legal {
    order: 4;
    text-align: center !important;
    margin: 0 !important;
  }
}

@media (max-width: 399px) {
  .contact-headline {
    font-size: 38px;
  }

  .contact-right form {
    max-width: 350px !important;
  }
}

@media (max-width: 370px) {
  .contact-headline {
    font-size: 34px;
  }

  .contact-right form {
    max-width: 320px !important;
  }
}

@media (max-width: 340px) {
  .contact-right form {
    max-width: 300px !important;
  }
}

@media (max-width: 330px) {
  .contact-right form {
    max-width: 280px !important;
  }
}

@media (max-width: 320px) {
  .contact-headline {
    font-size: 30px;
  }

  .contact-right form {
    max-width: 260px !important;
  }
}

.contact-headline-container .line {
  width: 400px;
}

.contact-left {
  margin-left: 70px;
}

.contact-left h3 {
  font-size: 28px;
}

.footer {
  padding: 50px 60px 35px 60px;
  border-top: 4px solid #70e61c;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-logo span {
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
}

.footer-legal {
  font-size: 16px;
  color: #cccccc;
  margin: 5px 0 0 0 !important;
  text-align: left !important;
}

.footer-copyright {
  font-size: 20px;
  color: #ffffff;
  margin: 0 !important;
  text-align: center !important;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.hero-side-text span {
  font-size: 48px;
}