/* Joel Edafe Foundation - Support Page Styles */

.jef-support-section {
  padding: 100px 20px;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  font-family: var(--DmSans);
}

.jef-support-container {
  max-width: 800px;
  text-align: center;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.jef-support-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.jef-support-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.jef-support-email {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.jef-support-email:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .jef-support-container {
    padding: 40px 20px;
  }

  .jef-support-title {
    font-size: 30px;
  }

  .jef-support-text {
    font-size: 16px;
  }
}
