* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  width: 100%;
  margin-top: 30px;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('bgapk.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
}

.container {
  width: 90%;
  max-width: 1100px;
  padding: 40px 20px;
  text-align: center;
}

h1 {
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  background: #fbeda3;
}

.logo-wrapper {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f1f1f1;
}

.logo-wrapper img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

.card h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.btn {
  width: 100%;
  padding: 12px 30px;
  background: #2d3436;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #d4af37;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  .grid-container {
    gap: 10px;
  }
}