/* ===============================
   GLOBAL
=================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Sora", sans-serif;
  line-height: 1.7;
  color: #111;
  background: #f6f7fb;
  overflow-x: hidden;
  font-size: 18px;
}

.container {
  width: min(1200px, 90%);
  margin: auto;
  padding: 10px 0;
}

/* ===============================
   COLORS & REUSABLES
=================================*/
:root {
  --primary: #015d43;
  --dark: #070707;
  --light: #ffffff;
  --gradient: linear-gradient(135deg, #015d43 0%, #00c59d 100%);

  --card-bg: #ffffff;
  --radius: 14px;
  --shadow: rgba(0, 0, 0, 0.12);
}

/* ===============================
   HERO
=================================*/
.hero {
  padding: 6rem 0 4rem;
  background: var(--dark);
  color: var(--light);
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  /* width: 120%; */
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(#015d43, transparent 65%);
  opacity: 0.4;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.font-size-18 {
  font-size: 18px;
}

.head-paragraph {
  letter-spacing: 8px;
  margin-bottom: 20px;
}

/* Highlighted gold text */
.highlight {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
}

/* ===============================
   HEADINGS
=================================*/
h1 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 800;
}

.headline {
  font-size: 2rem;
  margin-bottom: 25px;
  opacity: 0.96;
}

.subline {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ===============================
   PROBLEMS
=================================*/
.problems {
  padding: 4rem 0;
}

.problems ul {
  list-style: none;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px var(--shadow);
  display: grid;
  gap: 1rem;
}

/* ===============================
   CHECKLIST
=================================*/
.checklist {
  list-style: none;
  background: var(--card-bg);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px var(--shadow);
  margin: 2rem 0;
  line-height: 1.9;
}
.checklist li {
  margin: 20px 0;
}

/* ===============================
   IMPORTANT STATEMENT
=================================*/
.big-statement {
  margin: 2.5rem 0;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
}

/* ===============================
   SECTIONS
=================================*/
.content,
.this-i-know {
  padding: 4rem 0;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ===============================
   CTA BUTTON
=================================*/
.btn-primary {
  display: inline-block;
  padding: 1.1rem 2.2rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 8px 25px rgba(1, 93, 67, 0.35);
  transition: 0.35s;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(1, 93, 67, 0.45);
}

/* ===============================
   PARAGRAPHS
=================================*/
p {
  margin: 18px 0;
  font-size: 1rem;
}

/* ===============================
   FOOTER
=================================*/
footer {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.highlight {
  font-size: 50px;
  color: transparent;
}

p {
  font-size: 20px;
  margin-top: 20px;
}

/* ===============================
   FAQ SECTION
=================================*/
.faq-section {
  margin-top: 4rem;
}

.faq-item {
  background: var(--card-bg);
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px var(--shadow);
  margin-bottom: 1rem;
  transition: 0.3s;
  line-height: 1.6;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--shadow);
}

.faq-question {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.faq-answer {
  opacity: 0.85;
  font-size: 1.4rem;
}

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

.d-flex {
  display: flex;
  flex-wrap: wrap;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center;
}

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

.text-justify {
  text-align: justify;
}

img {
  max-width: 500px;
  width: 100%;

  margin: 10px;
}

svg {
  width: 40px;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  .headline {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2rem;
  }

  img {
    margin: 10px auto;
  }
}
