:root {
  --primary-blue: #0f2a44;
  --accent-orange: #f36f21;
  --text-gray: #6B7280;
  --light-bg: #f8fafc;
  --border-gray: #e5e7eb;
  --success-green: #22c55e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--primary-blue);
  background: #ffffff;
  line-height: 1.6;
}

.services-image {
  max-width: 100%;
  height: 395px;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------------- HERO ---------------- */
.hero {
  background: var(--light-bg);
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 500;
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-gray);
  font-size: 15px;
}

/* ---------------- SECTIONS ---------------- */
.section {
  padding: 100px 80px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---------------- NUMBER + TITLE ---------------- */
.number {
  display: inline;
  font-size: 32px;
  margin-right: 12px;
  vertical-align: baseline;
  color: #E87A5D;
}

.section h2 {
  display: inline;
  margin: 0;
  vertical-align: baseline;
}

h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

p {
  color: var(--text-gray);
  font-size: 14px;
}

/* ---------------- LIST ---------------- */
.services-ulist {
  list-style: none;
  margin-top: 16px;
}

ul .services-list {
  font-size: 14px;
  color: #0A2540;
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

ul .services-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 16px;
  height: 16px;
  background-image: url("./assests/images/service_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---------------- IMAGE PLACEHOLDER ---------------- */
.image-placeholder {
  max-width: 100%;
  height: 395px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------- EXECUTION SECTION ---------------- */
.execution {
  background: #ffffff;
}

/* ---------------- CTA ---------------- */
.cta {
  background: #f6ebdf;
  text-align: center;
  padding: 100px 20px;
}

.cta h2 {
  font-size: 49px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #0A2540;
  letter-spacing: -2px;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 14px;
  color: #6B7280;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  background-color: #E87A5D;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--accent-orange);
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  border: 1px solid var(--border-gray);
  color: var(--primary-blue);
}

/* ---------------- TABLET ---------------- */
@media (max-width: 1024px) {
  .section {
    padding: 80px 40px;
  }

  .row {
    gap: 48px;
  }
}

/* =========================
   MOBILE FIX (IMAGE FIRST)
========================= */
@media (max-width: 768px) {

  .row {
    grid-template-columns: 1fr;
  }

  /* IMAGE FIRST */
  .row .image-placeholder {
    order: 1;
  }

  /* TEXT SECOND */
  .row > div:not(.image-placeholder) {
    order: 2;
  }

  .hero h1 {
    font-size: 32px;
  }

  .services-image {
    margin: 0 auto 20px;
    height: auto;
  }
}

/* ---------------- SMALL MOBILE ---------------- */
@media (max-width: 480px) {
  .hero {
    padding: 80px 16px;
  }

  .section {
    padding: 64px 16px;
  }

 .second-image {
    width: 412px;
    height:480px;
    
  }

  .cta h2 {
    font-size: 24px;
  }
 
}

/* ---------------- DESKTOP LARGE ---------------- */
@media (min-width: 1024px) {
  .hero {
    width: 100%;
    height: 496px;
  }

  .hero p {
    width: 672px;
    font-size: 18px;
  }

  h2 {
    font-size: 30px;
  }

  .row {
    align-items: flex-start;
  }

  .second-image {
    width: 412px;
    height: 544px;
  }
}


