body{
    background: url('../images/home/about-bg.jpg') no-repeat center/cover;
}

.hero {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    padding: 0 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    font-weight: 700;
    gap: 60px;
    font-size: 1.5rem;
    color: #2c3e50;
}
.stat strong { font-size: 1.8rem; display: block; color: #1a5d1a; }

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 1rem;
    justify-content: center;
}
.btn-primary {
    background: #2E7D32;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-primary:hover { background: #47aa4c; transform: translateY(-3px); }
.btn-secondary { 
    color: #2E7D32; 
    border: 2px solid #2E7D32; 
    padding: 12px 28px; 
    border-radius: 50px; 
    text-decoration: none;
}

/* Qualification Section */
.qualification {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    gap: 2rem;
    padding: 80px 70px; /* Reduced horizontal padding on small screens */
    max-width: 1400px;
}

.qualification-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.qualification-header .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.qualification-header .description {
    color: #222;
}

/* Container for all requirement cards */
.req-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0;
}

.req-group{
    display: flex;
    gap: 10px;
    flex-direction: column;
}

/* Individual card */
.req-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-left: 6px solid #2E7D32;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Hide empty placeholder card on smaller screens */
.req-card--empty {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    visibility: hidden;
}

/* Icon circle */
.icon-con {
    background-color: #2E7D32;
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.req-content {
    flex: 1;
}

.req-name {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
}

.req-description {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}


.membership-steps {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 70px;
}

.membership-steps .steps-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.steps-header{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.steps-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
}

.steps-header .section-subtitle {
  color: #222;
}

.steps-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 4px;
  background: #cbd5e1;
  z-index: 1;
}

.step {
  flex: 1;
  max-width: 360px;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 100px;
  height: 100px;
  background: #2E7D32;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 30px;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.step-content {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 28px 24px;
  transition: all 0.3s ease;
  text-align: left;
}

.step-content h3 {
  color: #1f5422;
  font-size: 1.35rem;
  margin-bottom: 16px;
  font-weight: 700;
  text-align: center;
}

.step-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.step-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.step-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-weight: bold;
  font-size: 1.4em;
  top: -2px;
}

/* Hover Effects */
.step:hover .step-icon {
  background: #47aa4c;
  transform: scale(1.12);
}

.step:hover .step-content {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}


.downloadable {
  padding: 80px 0;
}

.downloadable-con {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.downloadable-header {
  text-align: center;
  margin-bottom: 40px;
}

.downloadable-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.forms-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.form {
  flex: 1 1 220px; /* grows and shrinks with min width */
  max-width: 250px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}

.form img.form-preview {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  background-color: #e9ecef; /* placeholder color if no image */
}

.form h4.form-name {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.form:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}