:root {
  --green: #556f55;
  --light-grey: #eceff0;
  --text-dark: #324230;
  --white: #ffffff;
  --orange: #f6a44e;
  --pink: #e8677d;
  --teal: #2daec4;
  --olive: #96b267;
}

/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

/* Hero */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: url('width_1599_1.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-logo {
  width: 110px;
  margin: 0 auto 1.5rem;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}
.btn + .btn {
  margin-left: 1rem;
}
.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--text-dark);
}
.btn-outline-green {
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}

/* Light & Dark sections */
.section-light {
  background: var(--light-grey);
}
.section-green {
  background: var(--green);
  color: var(--white);
}
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
}
.section-title-light {
  color: var(--white);
}

/* Grid 2 columns */
.grid-2col {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .grid-2col {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .grid-2col .section-title {
    text-align: left;
  }
}

/* Timeline */
.timeline {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.timeline li {
  position: relative;
  padding: 1rem 0 1rem 1.5rem;
  font-weight: 500;
  color: var(--text-dark); /* default */
}

/* individual colors */
.timeline li.orange { --step-color: var(--orange); }
.timeline li.pink   { --step-color: var(--pink);   }
.timeline li.teal   { --step-color: var(--teal);   }
.timeline li.olive  { --step-color: var(--olive);  }

.timeline li.orange,
.timeline li.pink,
.timeline li.teal,
.timeline li.olive {
  color: var(--text-dark); /* keep text dark */
}

.timeline li.orange::before,
.timeline li.pink::before,
.timeline li.teal::before,
.timeline li.olive::before {
  background: var(--step-color);
  box-shadow: 0 0 0 2px var(--step-color);
}

/* arrow indicator */
.timeline li::after {
  content: '\2192'; /* arrow right */
  font-weight: 700;
  margin-left: 0.5rem;
  color: var(--step-color, var(--green));
}

/* vertical connector */
.timeline::before {
  content: '';
  position: absolute;
  left: 0.55rem;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--step-color, var(--olive)); /* Match the line color from image */
}
.timeline li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.85em; /* Slightly larger */
  height: 0.85em;
  border-radius: 50%;
  background: var(--light-grey); /* Hollow center */
  border: 3px solid var(--step-color, var(--green));
  box-shadow: none; /* Remove outer shadow */
}

.note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 2rem 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.faq-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* Form */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.refund-form {
  display: grid;
  gap: 1rem;
}
.refund-form input[type="text"],
.refund-form input[type="email"],
.refund-form input[type="tel"] {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.file-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border: 1px dashed #999;
  border-radius: 4px;
  font-size: 0.95rem;
}
.file-upload input {
  display: none;
}

/* Separator */
.separator {
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 3rem 0;
}

/* Disclaimer */
.disclaimer {
  font-size: 0.75rem;
  margin-top: 2rem;
  color: #c62828;
  text-align: left;
}

.section-hero .disclaimer {
  padding-top: 100px;
  color: var(--white);
  text-align: center;
}

  .disclaimer {
  color: var(--text-dark);
  text-align: center;
}

/* Utility */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-group .btn {
  margin: 0.5rem;
}

/* Steps wrapper */
.steps-wrapper {
  align-items: stretch; /* Ensures both columns have equal height */
  gap: 3rem;
}

/* note / bracket */
.steps-note {
  position: relative;
  padding-left: 2rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .steps-note {
    margin-top: 0;
  }
}
/* bracket */
.steps-note::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 100%;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  border-top: 3px solid var(--green);
}
.steps-note::after {
 display: none; /* Removed top part of bracket */
}

.delegate-text {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  max-width: 280px;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.steps-car {
  width: 110px;
  height: auto;
}

/* adjust grid gap */
.steps-wrapper {
  gap: 3rem;
}

.handshake-img {
  width: 100%;
  max-width: 280px;
  margin-bottom: 1rem;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
} 