@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

body {
  background-color: #d3d9ff;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #f0f0f0;
  border-radius: 30px;
  box-shadow: 10px 10px 30px #cbced1, -10px -10px 30px #ffffff;
  padding: 40px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  font-size: 36px;
  font-weight: 500;
  color: #282c34;
}

.contact-section {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 10px 10px 30px #cbced1, -10px -10px 30px #ffffff;
  padding: 30px;
}

label {
  font-weight: 500;
  color: #282c34;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  background-color: #f0f0f0;
}

textarea {
  height: 150px;
  resize: none;
}

button[type="submit"] {
  background-color: #282c34;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  margin-top: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #3d3f45;
}

.footer-links {
  text-align: center;
  margin-top: 40px;
}

.footer-links a {
  color: #282c34;
  text-decoration: none;
  margin-right: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3d3f45;
}

.social-icons {
  text-align: center;
  margin-top: 40px;
}

.social-icons a {
  display: inline-block;
  background-color: #ffffff;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  text-align: center;
  margin: 0 10px;
  box-shadow: 10px 10px 30px #cbced1, -10px -10px 30px #ffffff;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: translateY(-10px);
}

.social-icons a i {
  line-height: 50px;
  font-size: 20px;
  color: #282c34;
}

.text-center {
  text-align: center;
  margin-top: 40px;
}

.text-center p {
  color: #282c34;
  font-weight: 500;
}

  