@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #e4ebf6;
  color: #2c3e50;
  padding: 20px;
  padding-top: 120px; 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(-45deg, #b3e5fc, #81d4fa, #4dd0e1, #b2ebf2);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

.info {
  position: relative;
  bottom: 35px;
  max-width: 1000px;
  padding: 30px;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  color: black;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}

.text {
  font-size: 20px;
  color: #3498db;
  margin-bottom: 30px;
  font-weight: 600;
}

.contactBox {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.item1, .item2 {
  flex: 1;
  background-color: #2c3e50;
  color: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 180px;
  width: 850px;
  min-width: 300px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.item1:hover, .item2:hover {
  transform: scale(0.95);
  box-shadow: 0px 6px 15px rgba(28, 102, 144, 0.6);
}

.icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: invert(1);
}

.item1 p, .item2 p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    gap: 10px;
    text-align: center;
  }

  .logo {
    margin: 0;
    font-size: 1.8rem;
  }

  nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    color: #2c3e50;
    background-color: #ffffff;
    border-radius: 8px;
    transition: background 0.3s ease;
  }

  nav ul li a:hover {
    background-color: #f4f4f4;
    color: #2980b9;
  }

  .sign-in-btn,
  .sign-up-btn {
    width: 90%;
    max-width: 280px;
    margin-top: 10px;
    align-self: center;
    text-align: center;
    font-size: 1rem;
  }

  .contactBox {
    flex-direction: column;
    gap: 20px;
  }

  .item1, .item2 {
    width: 100%;
    max-width: 100%;
  }
}
