.index-page {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #111;
}

/* - SECTION 1 - */
.section-1 {
  position: relative;
  width: 100%;
}

.section-1-content {
  display: flex;
  flex-direction: column;
}

.section-1-text {
  background-color: white;
  padding: 100px 20px;
  text-align: center;
}

.section-1-text h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #000;
  max-width: 800px;
  margin: 0 auto;
}

.section-1-image {
  position: relative;
  width: 100%;
  height: 800px;
}

.section-1-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -50px;
  clip-path: polygon(0 0, 50% 13%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

/* - SECTION 2 - */
.section-2 {
  background: #fff;
  padding: 80px 20px;
}
.section-2-inner {
  max-width: 800px;
  margin: 0 auto;
}
.section-2-inner h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.section-2-inner p {
  margin: 1em 0;
  line-height: 1.6;
}
.section-2-list {
  list-style: none;
  margin: 0.5em 0 1.5em 0;
  padding: 0;
}
.section-2-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.section-2-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: url('../img/index-bullet.png') no-repeat center / contain;
}
.section-2-button {
  display: inline-block;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  margin-top: 20px;
}

/* - SECTION 3 - */
.section-3 {
  background: #000;
  color: #fff;
  padding: 80px 20px;
}
.section-3-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.section-3-inner h2 {
  margin-bottom: 40px;
  font-size: 2.4rem;
}
.section-3-cards {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}
.section-3-card {
  /* Allow it to grow if there’s extra space (i.e. only one card in the row) */
  flex: 1 1 calc(50% - 50px);
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
.section-3-card img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  display: block;
  object-fit: cover;
}
.section-3-card h3 {
  padding: 15px;
  margin: 0;
  text-align: left;
  font-size: 1.5rem;
}
.section-3-card p {
  padding: 0 15px;
  margin: 0;
  text-align: left;
  flex-grow: 1;
  font-size: 1rem;
}
.section-3-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 16px 24px;
  margin-top: 30px;
}

/* - SECTION 4 - */
.section-4 {
  background: #fff;
  padding: 80px 20px;
}
.section-4-inner {
  max-width: 800px;
  margin: 0 auto;
}
.section-4-inner h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.section-4-inner p {
  line-height: 1.6;
  margin: 1em 0;
}
.section-4-list {
  list-style: none;
  padding: 0;
  margin: 0.5em 0 1.5em;
}
.section-4-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.section-4-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: url('../img/index-bullet.png') no-repeat center / contain;
}
.section-4-button {
  display: inline-block;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  margin-top: 20px;
}
