@font-face {
  font-family: "Poppins";

  src: url("../font/Poppins/Poppins-Bold.ttf") format("truetype");

  font-weight: normal;

  font-style: normal;
}

@font-face {
  font-family: "Avenir";

  src: url("../font/Avenir.ttc") format("truetype");

  font-weight: normal;

  font-style: normal;
}

:root {
  --blue: #002798;
  --orange: #ff7f00;
  --bg-light: #f1f8ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-light);
  min-height: 100vh;
  padding: 40px 20px 60px;
}

h1 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

h1 span {
  color: var(--orange);
}

.cards-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

.card {
  background: var(--bg-light);
  border: 2.5px solid var(--blue);
  border-radius: 18px;
  padding: 28px 36px 32px;
  width: 100%;
  animation: fadeSlideUp 0.5s ease both;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}
.card:nth-child(3) {
  animation-delay: 0.2s;
}
.card:nth-child(5) {
  animation-delay: 0.3s;
}
.card:nth-child(7) {
  animation-delay: 0.4s;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card h2 {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 18px;
}

.card ul {
  list-style: none;
  margin-bottom: 24px;
}

.card ul li {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}

.card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.btn {
  width: 150px;
  text-align: center;

  display: block;
  margin: 0 auto;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 11px 36px;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
}

.btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* Wavy connector */
.connector {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 60px;
  height: 70px;
  position: relative;
}

.connector.left {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 60px;
}

.connector svg {
  width: 160px;
  height: 70px;
}
