/* General Page Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  /* padding: 0 1rem; */
  overflow-x: hidden;
}

/* Hero Section */

.hero-image img {
  width: 100vw;
  max-width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  z-index: -1;
}

.hero-overlay {
  background-color: #f5f5f5;
  padding: 4rem 1rem;
  text-align: center;
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the image */
}

.become-member-hero h1 {
  font-size: 2.8rem;
  color: #1c3f2e;
  margin-bottom: 1rem;
}

.become-member-hero p {
  font-size: 1.2rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #006837;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #004d2d;
}

/* Benefits Section */
.membership-benefits {
  background: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.membership-benefits h2 {
  color: #1c3f2e;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

.membership-benefits li {
  margin-bottom: 1rem;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.benefit-list i {
  color: #006837;
  margin-right: 10px;
}

/* Contact Info Section */
.contact-info {
  background-color: #f0f0f0;
  padding: 3rem 1rem;
  text-align: center;
}

.contact-info h2 {
  color: #1c3f2e;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.contact-info a {
  color: #006837;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .become-member-hero h1 {
    font-size: 2rem;
  }

  .become-member-hero p,
  .membership-benefits h2,
  .contact-info h2 {
    font-size: 1.1rem;
  }

  .btn-primary {
    width: 100%;
    padding: 1rem;
  }

  .benefit-list {
    padding: 0 1rem;
  }
  
  .membership-benefits li {
  font-size: 16px;
}
}
