/* ================= CTA STRIP ================= */

.cta-strip {
  width: 100%;
  background-color: #7a3f2b;
  padding: 28px 0;
}

/* MAIN FLEX WRAPPER */
.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  box-sizing: border-box;

  display: flex;
  align-items: center;              /* 🔑 vertical alignment */
  justify-content: space-between;
  gap: 32px;
}

/* TEXT BLOCK */
.cta-text {
  display: flex;                    /* 🔑 text block center */
  flex-direction: column;
  justify-content: center;
}

.cta-text h3 {
  font-size: 28px;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.cta-text p {
  font-size: 15px;
  color: #f1f1f1;
  margin: 0;
  line-height: 1.5;
}

/* CTA BUTTON */
.cta-strip-btn {
  background-color: #8fa75a;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;

  display: flex;                    /* 🔑 force vertical center */
  align-items: center;
  justify-content: center;

  transition: background-color 0.25s ease, transform 0.2s ease;
}

.cta-strip-btn:hover {
  background-color: #7b8f3a;
  transform: translateY(-1px);
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
  .cta-strip-inner {
    padding: 0 40px;
  }

  .cta-text h3 {
    font-size: 24px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .cta-strip-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
  }

  .cta-text {
    align-items: center;
  }

  .cta-text h3 {
    font-size: 22px;
  }

  .cta-strip-btn {
    width: 100%;
    max-width: 320px;
    margin-top: 16px;
  }
}

/* ================= SMALL PHONES ================= */

@media (max-width: 480px) {
  .cta-text h3 {
    font-size: 20px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .cta-strip-btn {
    font-size: 16px;
    padding: 12px 0;
  }
}
