/* =======================================
   RWC NEXT STEPS PAGE STYLING
   ======================================= */

body.page-template-page-nextsteps {
  font-family: 'Poppins', sans-serif;
  color: #111;
  background: #fff;
}

/* HERO */
.nextsteps-hero {
  background: linear-gradient(135deg, #004d26, #007a44);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.nextsteps-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.nextsteps-hero p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #e8e8e8;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn--green {
  background: #004d26;
  color: #fff;
}

.btn--green:hover {
  background: #007a44;
}

.btn--light {
  background: #fff;
  color: #004d26;
}

.btn--light:hover {
  background: #004d26;
  color: #fff;
}

/* STEP SECTIONS */
.step-section {
  padding: 100px 20px;
}

.light-bg {
  background: #fffaf5;
}

.alt-bg {
  background: #f2f5f1;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  gap: 50px;
}

.grid-2.reverse {
  direction: rtl;
  text-align: left;
}

.grid-2.reverse .step-text {
  direction: ltr;
}

.step-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.step-text h2 {
  font-size: 1.8rem;
  color: #004d26;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.step-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

/* CTA */
.cta-green {
  background: linear-gradient(135deg, #004d26, #007a44);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.cta-green h2 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-green p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nextsteps-hero h1 { font-size: 2.3rem; }
  .grid-2 { gap: 30px; }
  .step-section { padding: 70px 15px; }
}
