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

body {
  background-color: rgb(32%, 48%, 79%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 400px;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 5px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.header {
  background-color: #fff;
  border-radius: 12px 12px 0 0;
}

.logo {
  width: 100%;
}

.content {
  padding: 20px;
  text-align: left; /* Aligns the content to the left */
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center; /* Center the title */
}

.section {
  margin-top: 20px;
}

h2 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center; /* Center the subtitle */
}

p {
  margin: 5px 0;
}

a {
  text-decoration: none;
  color: #3d67cc;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  justify-items: center;
  gap: 20px;
  margin-top: 15px;
}

.social-icons img {
  width: 40px;
  height: 40px;
}

@media (max-width: 480px) {
  .card {
    padding: 15px;
  }

  .social-icons img {
    width: 30px;
    height: 30px;
  }
}
