.subtitle {
  font-size: 34px;
  color: #35CDFE;
  margin-bottom: 20px;
  padding-top: 20px;}

h1 {
  font-size: 98px;
  font-weight: bold;
  margin-bottom: 0;
}

h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}
.section-container {
  padding-top: 100px;
}

.box-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 250px;
  margin-bottom: 50px;
}

.box-link {
  text-decoration: none;
  display: block;
}

 .box-link .box {
  background-color: #111;
  color: #fff;
  padding: 30px 26px 18px; /* reduced vertical padding */
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  width: 285px; /* wider desktop width */
  min-height: 180px; /* slightly shorter */
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

/* Ensure icon, title, text spacing is tight & consistent */
.box-link .box i { margin-bottom: 14px; font-size: 2.1rem; }
.box-link .box h2 { margin: 0 0 8px; font-size: 20px; }
.box-link .box p { margin: 0; font-size: 15px; line-height: 1.4; }

/* Tablet: keep row look, allow slight shrink but center */
@media (max-width: 1100px) {
  .box-link .box { width: 260px; }
}
@media (max-width: 900px) {
  .box-container { gap: 24px; margin-top: 260px; }
  .box-link .box { width: 240px; padding: 20px 20px 16px; min-height: 170px; }
  .box-link .box h2 { font-size: 19px; }
  .box-link .box p { font-size: 14.5px; }
}
/* Small mobile: stack full width but cap max width to preserve shape */
@media (max-width: 560px) {
  .box-container { margin-top: 200px; }
  .box-link .box { width: 100%; max-width: 340px; min-height: 165px; padding: 20px 20px 16px; }
  .box-link .box h2 { font-size: 18.5px; }
  .box-link .box p { font-size: 14px; }
}
@media (max-width: 380px) {
  .box-link .box { max-width: 300px; padding: 18px 16px 14px; min-height: 150px; }
  .box-link .box h2 { font-size: 17.5px; }
  .box-link .box p { font-size: 13.5px; }
}

.box-link .box i {
  color: #35CDFE;
}

.box-link .box h2,
.box-link .box p {
  color: inherit;
}

.box-link:hover .box {
  transform: translateY(-5px);
  border-color: #35CDFE;
}

.box-link:hover h2,
.box-link:hover p,
.box-link:hover i {
  color: #35CDFE;
}

.box.active {
  border: 2px solid #35CDFE;
}

.box::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #35CDFE;
}