/* === Page-Specific Modular Section === */
.custom-block {
  background: linear-gradient(to bottom, #1b1b1b, #2b2b2b);
  color: #f9f9f9;
  padding: 4rem 2rem;
  margin-top: 2rem;
  border-top: 4px solid #ff6a00;
  border-bottom: 4px solid #ff6a00;
}

.custom-block .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.custom-block h2 {
  font-size: 2.25rem;
  color: #ffa733;
  margin-bottom: 1rem;
}

.custom-block p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

.custom-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.box {
  background: #292929;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  padding: 2rem;
  width: 280px;
  min-height: 180px;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
}

.box h3 {
  font-size: 1.3rem;
  color: #ffa733;
  margin-bottom: 0.5rem;
}

.box p {
  font-size: 1rem;
  color: #ddd;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .custom-grid {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 90%;
  }
}
