/* Base Reset and Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f7fa;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
}

.box {
  position: relative;
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  border-top: 10px solid var(--clr);
}

.box:hover {
  transform: translateY(-10px);
}

.box .content {
  padding: 30px 25px;
}

.box .icon {
  font-size: 50px;
  color: var(--clr);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.box .text h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.box .text p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.box .text a {
  display: inline-block;
  padding: 10px 20px;
  background: var(--clr);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  transition: background 0.3s ease;
  text-align: center;
}

.box .text a:hover {
  background: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .box {
    max-width: 90%;
  }
}
