* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.wrapper {
  width: 95%;
  max-width: 1300px;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 5px 5px 35px rgba(0,0,0,0.12);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}

.card {
  width: 100%;
  text-align: center;
  padding: 2.5rem;
  border-radius: 30px;
  background: #fff;
  box-shadow: 5px 5px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 5px 10px 35px rgba(0,0,0,0.16);
}

.logo {
  width: 100%;
  height: auto;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  .wrapper {
    padding: 1.2rem;
    margin: 20% 0;
    width: 100%;
  }
  .card {
    padding: 1.5rem;
    min-height: 180px;
  }
  .logo {
    max-width: 200px;
  }
}
