/* Arise Africa Network | Modules Design */

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9fb;
  margin: 0;
  padding: 0;
  color: #222;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('../../images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.1em;
  opacity: 0.9;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 5%;
}

.module-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.module-card:hover {
  transform: translateY(-5px);
}

.module-card h3 {
  color: #222;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #e45b1a;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #c94b0e;
}

footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background: #fff;
  color: #777;
  font-size: 0.9em;
  border-top: 1px solid #eee;
}