@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.page-shell {
  background:
    radial-gradient(circle at top, rgba(16, 185, 129, 0.12), transparent 25%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f8fafc 100%);
}
/* ================= HERO FULL SCREEN ================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - 80px); /* adjust 80px to your header height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #f3f4f6;
  overflow: hidden;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}

.hero-title {
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-title-top {
  color: #caa55b;
  font-size: clamp(28px, 4vw, 48px);
}

.hero-title-main {
  color: #2f2a6e;
  font-size: clamp(32px, 5vw, 56px);
}

.hero-description {
  margin-top: 20px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description span {
  color: #caa55b;
  font-weight: 600;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.hero-btn-red {
  background: #ef2b2d;
}

.hero-btn-gold {
  background: #caa55b;
}

/* Pattern fixed to bottom */
.hero-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background-image: url("../images/pattern-hero.png");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: contain;
  z-index: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    min-height: calc(100vh - 70px);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 90%;
    max-width: 320px;
  }

  .hero-pattern {
    height: 180px;
  }
}
/* ================= SHARED SECTION STYLES ================= */

.section-block {
  position: relative;
  padding: 90px 0;
  background: #f3f4f6;
}

.section-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading-left {
  max-width: 860px;
}

.section-kicker {
  display: inline-block;
  width: 86px;
  height: 6px;
  background: #caa55b;
  margin-bottom: 28px;
}

.section-title,
.problem-title {
  margin: 0;
  color: #2f2a6e;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 900px;
}

.section-intro,
.problem-intro {
  margin: 28px 0 0;
  max-width: 760px;
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ================= PROBLEM SECTION ================= */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
}

.problem-card {
  min-height: 290px;
  padding: 40px 32px 34px;
  background: #dcc7a2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.problem-card-mid {
  background: #d4bb8d;
}

.problem-card-dark {
  background: #caab72;
}

.problem-card-title {
  margin: 0 0 52px;
  color: #23245f;
  font-size: clamp(1.15rem, 2vw, 1.85rem);
  line-height: 1.02;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  max-width: 220px;
}

.problem-card-text {
  margin: 0;
  color: #333a46;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 260px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .section-block {
    padding: 72px 0;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: auto;
    padding: 34px 26px;
  }

  .problem-card-title {
    margin-bottom: 24px;
    max-width: none;
  }

  .problem-card-text {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .section-container {
    width: min(100%, calc(100% - 24px));
  }

  .section-block {
    padding: 56px 0;
  }

  .section-kicker {
    width: 70px;
    height: 5px;
    margin-bottom: 20px;
  }

  .section-title,
  .problem-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.1;
  }

  .section-intro,
  .problem-intro {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .problem-grid {
    margin-top: 22px;
  }

  .problem-card {
    padding: 28px 22px;
  }

  .problem-card-title {
    font-size: 1.45rem;
  }

  .problem-card-text {
    font-size: 0.96rem;
  }
}
/* ================= SHARED SECTION HELPERS ================= */

.section-heading-center {
  text-align: center;
}

.section-heading-center .section-kicker {
  display: block;
  margin: 0 auto 22px;
}

.section-heading-center .section-title {
  margin-left: auto;
  margin-right: auto;
}

/* ================= CAPABILITIES SECTION ================= */

.capabilities-section {
  background: #f3f4f6;
  padding-top: 72px;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 56px;
  align-items: center;
}

.capability-content {
  max-width: 520px;
}

.capability-label {
  margin: 0 0 10px;
  color: #caa55b;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 500;
}

.capability-title {
  margin: 0;
  color: #2f2a6e;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.16;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  max-width: 520px;
}

.capability-text {
  margin: 18px 0 0;
  max-width: 500px;
  color: #4b5563;
  font-size: 1.08rem;
  line-height: 1.7;
}

.capability-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.capability-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2f2a6e;
  font-size: 1rem;
  line-height: 1.5;
}

.capability-icon-wrap {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.capability-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.capability-media {
  display: flex;
  justify-content: flex-end;
}

.capability-image-shape {
  width: min(100%, 520px);
  aspect-ratio: auto; /* allows full image height */
  overflow: hidden;

  /* softer angle */
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 6% 100%);
}

.capability-image {
  width: 100%;
  height: auto; /* important */
  object-fit: contain; /* no more cropping */
  display: block;
}

/* ================= RESPONSIVE CAPABILITIES ================= */

@media (max-width: 1100px) {
  .capability-layout {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .capability-content {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .capability-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .capability-content {
    order: 1;
    max-width: none;
  }

  .capability-media {
    order: 2;
    justify-content: center;
  }

  .capability-image-shape {
    width: min(100%, 620px);
    aspect-ratio: 1.2 / 0.95;
  }
}

@media (max-width: 768px) {
  .capabilities-section {
    padding-top: 56px;
  }

  .capability-label {
    font-size: 0.98rem;
  }

  .capability-title {
    font-size: clamp(1.55rem, 7vw, 2.3rem);
    line-height: 1.15;
  }

  .capability-text {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .capability-list {
    margin-top: 24px;
    gap: 12px;
  }

  .capability-list-item {
    align-items: flex-start;
    font-size: 0.96rem;
  }

  .capability-icon-wrap,
  .capability-icon {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
    margin-top: 3px;
  }

  .capability-image-shape {
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 22% 100%);
  }
}
/* reverse layout (image left) */
.capability-layout--reverse {
  grid-template-columns: minmax(380px, 520px) minmax(0, 1fr);
}

/* ensure spacing stays aligned */
.capability-layout--reverse .capability-media {
  justify-content: flex-start;
}
/* ================= TRUSTED SECTION ================= */

.trusted-intro strong {
  color: #2f2a6e;
}

/* grid */
.trusted-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* card */
.trusted-card {
  display: flex;
  flex-direction: column;
}

/* image box */
.trusted-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
}

.trusted-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay colors */
.trusted-image::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.7;
}



/* label */
.trusted-label {
  margin-top: 14px;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  border-radius: 6px;
  color: white;
}

/* label colors */
.trusted-label.red {
  background: #ef2b2d;
}

.trusted-label.navy {
  background: #2f2a6e;
}

.trusted-label.gold {
  background: #caa55b;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .trusted-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .trusted-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT SECTION ================= */

.contact-section {
  background: #2f2a6e;
  color: white;
}

/* heading */
.contact-title {
  color: white;
}

.contact-intro {
  color: #e5e7eb;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* form card */
.contact-card {
  margin-top: 50px;
  background: #f3f4f6;
  padding: 40px;
  border-radius: 16px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;

  animation: fadeUp 0.8s ease;
}

.contact-card-title {
  color: #2f2a6e;
  margin-bottom: 24px;
  font-size: 24px;
}

/* form */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #2f2a6e;
  font-weight: 500;
}

/* inputs */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  outline: none;
  font-size: 15px;
  transition: 0.25s;
}

/* hover + focus animation */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #caa55b;
  box-shadow: 0 0 0 3px rgba(202,165,91,0.2);
  transform: scale(1.01);
}

/* submit button */
.submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  border: none;
  border-radius: 999px;
  background: #2f2a6e;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.submit-btn:hover {
  background: #1e1b4b;
  transform: translateY(-2px);
}

/* note */
.form-note {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #6b7280;
}

/* animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* mobile */
@media (max-width: 768px) {
  .contact-card {
    padding: 24px;
  }
}
/* ================= HEADER ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f3f4f6;
  border-top: 4px solid #ef2b2d;
}

/* container */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */

.logo img {
  height: 50px;
  object-fit: contain;
}

/* ================= NAV ================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #2f2a6e;
  font-size: 16px;
  padding-bottom: 6px;
  transition: 0.2s;
}

/* subtle hover (NOT gold) */
.nav-links a:hover {
  color: #1e1b4b;
}

/* ACTIVE PAGE */
.nav-links a.active {
  font-weight: 600;
}

/* gold underline ONLY for active */
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #caa55b;
  border-radius: 2px;
}

/* ================= BUTTON ================= */

.contact-btn {
  background: #ef2b2d;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.2s;
}

.contact-btn:hover {
  background: #d91f21;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .header-container {
    padding: 12px 16px;
  }

  .logo img {
    height: 42px;
  }

  .nav-links {
    display: none; /* can replace with hamburger later */
  }

  .contact-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
/* ================= FOOTER ================= */

.site-footer {
  background: #f3f4f6;
  border-top: 4px solid #ef2b2d;
  padding-top: 60px;
}

/* container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
}

/* ================= LEFT ================= */

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-about p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 15px;
}

/* ================= CENTER ================= */

.footer-links h3 {
  color: #2f2a6e;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links a {
  display: block;
  color: #2f2a6e;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 16px;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #caa55b;
}

/* ================= RIGHT ================= */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-item div {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.footer-item strong {
  color: #2f2a6e;
}

/* ================= BOTTOM ================= */

.footer-bottom {
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid #d1d5db;
  text-align: center;
  font-size: 15px;
  color: #2f2a6e;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    height: 50px;
  }
}

/* ================= About ================= */

/* ================= ABOUT HERO ================= */

.about-hero {
  position: relative;
  min-height: calc(100vh - 80px); /* full screen minus header */
  display: flex;
  align-items: center;
  justify-content: flex-start;

  background: url("../images/about.png") center/cover no-repeat;
  overflow: hidden;
}

/* gold overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(202, 165, 91, 0.75);
}

/* text */
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 20px;
}

.about-hero-content h1 {
  color: white;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 500px;
}

@media (max-width: 768px) {

  .about-hero {
    min-height: 320px; /* 👈 fixed height instead of full screen */
    height: 360px;

    align-items: flex-end;
    padding: 30px 0;
  }

  .about-hero-content {
    padding: 0 16px;
  }

  .about-hero-content h1 {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.1;
    max-width: 100%;
  }

}
/* ================= ABOUT INTRO ================= */

.about-intro-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-intro-text strong {
  color: #2f2a6e;
  font-weight: 600;
}

/* ================= VISION / MISSION ================= */

.vision-mission-section {
  background: #f3f4f6;
}

/* grid layout */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* item */
.vm-item {
  max-width: 520px;
}

/* titles */
.vm-title {
  font-size: 32px;
  font-weight: 600;
  color: #2f2a6e;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* gold underline */
.vm-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: #caa55b;
  margin-bottom: 20px;
}

/* text */
.vm-text {
  color: #4b5563;
  line-height: 1.7;
  font-size: 16px;
}
@media (max-width: 900px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vm-item {
    max-width: 100%;
  }

  .vm-title {
    font-size: 26px;
  }
}
.vm-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.vm-item:nth-child(2) {
  animation-delay: 0.2s;
}

/* ================= STATS CARDS ================= */

.stats-section {
  background: #f3f4f6;
}

/* grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* card */
.stat-card {
  background: #f8f8f8;
  padding: 40px 20px;
  border-radius: 18px;
  text-align: center;
  position: relative;

  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

/* GOLD TOP ACCENT (important part) */
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #caa55b;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* number */
.stat-card h3 {
  color: #caa55b;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

/* text */
.stat-card p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* hover (subtle premium feel) */
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1000px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-card h3 {
    font-size: 28px;
  }
}
/* ================= LEADERSHIP SECTION ================= */

.leadership-section {
  background: #f3f4f6 url("../images/pattern.png") repeat;
  background-size: 300px;
}

/* layout */
.leadership-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* text side */
.leadership-kicker {
  color: #caa55b;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.leadership-name {
  font-size: 40px;
  color: #2f2a6e;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.leadership-role {
  font-size: 20px;
  color: #2f2a6e;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.leadership-text {
  color: #4b5563;
  line-height: 1.7;
  font-size: 16px;
  max-width: 520px;
}

/* right side */
.leadership-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* placeholder (replace later with image) */
.leadership-placeholder {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 4px solid #caa55b;
  opacity: 0.4;
}
@media (max-width: 900px) {

  .leadership-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leadership-text {
    margin: 0 auto;
  }

  .leadership-visual {
    margin-top: 30px;
  }

}
/* ================= CONTACT INFO ================= */

.contact-info-section {
  background: #f3f4f6;
}

/* title */
.contact-info-header {
  margin-bottom: 50px;
}

.contact-info-title {
  font-size: 36px;
  color: #2f2a6e;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-info-underline {
  display: block;
  width: 100px;
  height: 4px;
  background: #caa55b;
}

/* grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* column */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* item */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* icon placeholder */
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e5e7eb;
  flex-shrink: 0;
}

/* text */
.contact-item strong {
  display: block;
  color: #374151;
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-item p {
  color: #6b7280;
  line-height: 1.6;
}
.contact-icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
@media (max-width: 900px) {

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-title {
    font-size: 28px;
  }

}
/* ================= CTA SECTION ================= */

.cta-section {
  position: relative;
  background: url("../images/yakar-bg.png") no-repeat center;
  background-size: contain; /* KEY CHANGE */
  background-color: #caa55b;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
}

/* soft overlay to match faded logo look */
.cta-overlay {
display: none; /* hide the overlay */
 
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* title */
.cta-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 30px;
}

/* subtext */
.cta-subtext {
  font-size: 20px;
  color: #f3f4f6;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* button */
.cta-button {
  display: inline-block;
  background: #ef2b2b;
  color: #fff;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #d91f1f;
  transform: translateY(-2px);
}
@media (max-width: 768px) {

  .cta-section {
    padding: 80px 20px;
    background-position: center;
    background-size: cover; /* better for mobile */
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-subtext {
    font-size: 16px;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

}