/* === 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%;
  }
}
/* === 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: #111;
  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%;
  }
}

/*----------------------------------------------Top of CTA button under the three text boxes------------------------------
/* === CTA Button Below Grid === */
.cta-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #ff6900;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #007AFF;
  color: #000;
  transform: translateY(-2px);
}

/* Responsive CTA layout */
@media screen and (max-width: 768px) {
  .cta-button {
    width: 80%;
    font-size: 1rem;
    padding: 12px 20px;
  }
}

 /*----------------------------------------------Bottom of CTA button under the three text boxes------------------------------