/* ----------------- RESET ----------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #E6EAF5;
  font-family: 'Poppins', sans-serif;
}

/* ----------------- LAYOUT ----------------- */

/* Main Section */
.main-section {
  width: 100%;
  height: 440px;
  border-bottom: 1px solid #181248;
}

/* Header Section */
.header-section {
  border-bottom: 1px solid #181248;
  height: 200px;
}

/* Heading Styles */
.heading1 {
  padding: 35px 0px 0px 90px;
  font-size: 64px;
  font-family: 'Poppins', sans-serif;
  color: #181248;
  font-weight: 500;
}

.heading2 {
  padding: 0px 0px 35px 90px;
  font-size: 28px;
  font-family: 'Poppins', sans-serif;
  color: #181248;
  font-weight: 400;
}

/* Form Styles */
.form {
  padding: 35px 0px 20px 90px;
}

/* Input Field Styles */
.inputdiv {
  margin-bottom: 20px;
}

.inputdiv label {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #181248;
}

.input-wrapper {
  position: relative;
}

.inputdiv input {
  width: 800px;
  height: 40px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #181248;
  padding: 10px 40px 0px 0px;
  font-size: 20px;
  color: #181248;
}

.inputdiv input:focus {
  outline: none;
}

.inputdiv input:focus::placeholder {
  color: transparent;
  cursor: pointer;
}

.inputdiv::placeholder {
  font-size: 20px;
  font-style: italic;
  color: #181248;
  opacity: 40%;
}

/* Send Button Styles */
.send-button {
  margin-top: 40px;
  padding: 12px 24px;
  background-color: #181248;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 200px;
  height: 50px;
}

.send-button:hover {
  background-color: #3434a1;
}

/* ----------------- FOOTER ----------------- */

/* Footer Section */
.footer-section {
  width: 100%;
  height: 40px;
}

/* Footer Links Styles */
.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links a {
  color: #181248;
  text-decoration: none;
  margin: 30px 16px;
  font-weight: 300;
  font-size: 18px;
}

.footer-links a:hover,
.footer-links a.active {
  text-decoration: underline;
}



/* ---------- MAX WIDTH 1200px ---------- */
@media (max-width: 1200px) {
  .heading1 {
    padding: 35px 0 0 60px;
    font-size: 54px;
  }

  .heading2 {
    padding: 0 0 35px 60px;
    font-size: 24px;
  }

  .form {
    padding: 35px 0 20px 60px;
  }

  .inputdiv input {
    width: 600px;
  }

  .footer-links a {
    font-size: 16px;
    margin: 30px 12px;
  }
}

/* ---------- MAX WIDTH 992px ---------- */
@media (max-width: 992px) {
  .heading1 {
    padding-left: 40px;
    font-size: 44px;
  }

  .heading2 {
    padding-left: 40px;
    font-size: 20px;
  }

  .form {
    padding-left: 40px;
  }

  .inputdiv input {
    width: 500px;
    font-size: 18px;
  }

  .send-button {
    width: 180px;
    height: 45px;
    font-size: 15px;
  }

}


/* ---------- MAX WIDTH 768px ---------- */
@media (max-width: 768px) {
  .main-section {
    height: fit-content;
    padding: 30px 20px;
  }

  .header-section {
    height: fit-content;
    padding: 20px;
    text-align: left;
  }

  .heading1,
  .heading2 {
    padding: 0;
    text-align: left;
  }

  .heading1 {
    font-size: 32px;
  }

  .heading2 {
    font-size: 16px;
  }

  .form {
    padding: 20px;
    text-align: left;
  }
  
  .inputdiv input {
    width: 100%;
    max-width: 90%;
    font-size: 16px;
  }

  .send-button {
    width: 100%;
    max-width: 260px;
    height: 45px;
    font-size: 14px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
  }

  .footer-links a {
    margin: 10px 0;
    font-size: 16px;
  }
}

