.blog-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Hero Section */
.blog-hero {
  background: linear-gradient(135deg, #8e324a, #be2a51);
  color: #fff;
  text-align: center;
  padding: 5rem 1rem 4rem;
  position: relative;
}

.blog-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-hero p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Steps */
 .blog-page-content .step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 1.5rem;
}

 .blog-page-content .step .icon {
  font-size: 2.2rem;
  color: #be2a51;
  min-width: 2.2rem;
}

 .blog-page-content h3 {
  margin: 0;
  color: #8e324a;
  font-size: 1.3rem;
}

 .blog-page-content p {
  margin: 0;
  font-size: 1rem;
}

/* Bottom CTA Wrapper */
.cta-btn-wrapper {
  text-align: center;
}

/* CTA Button (non-fixed) */
.cta-btn {
  display: inline-block;
  background-color: #8e324a;
  color: #fff;
  padding: 1rem 2rem;
  margin-bottom: 50px;
  font-size: 1.1rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #be2a51;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 2rem;
  }

  .blog-hero p {
    font-size: 1rem;
  }

   .blog-page-content .step {
    gap: 0.75rem;
  }

  .cta-btn {
    display: block;
    font-size: 1rem;
  }

  .cta-btn-wrapper {
    padding: 0 1rem;
  }
}
