@font-face {
  font-family: "Sprintura Demo";
  src: url("fonts/Sprintura Demo.woff2") format("woff2"),
       url("fonts/Sprintura Demo.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


    :root {
      --text-dark: #111;
      --text-muted: #777;
      --border-light: #ddd;
      --bg-light: #f5f5f5;
    }

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

    body {
      background: #F2F2F2;
      color: var(--text-dark);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 24px 40px;
      text-align: center;
    }

    /* Logo */
    .logo-img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 80px;
}


    /* Cards layout */
    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 80px;
    }

    .card {
      text-align: left;
      
    }

   .card-title {
  font-family: "Sprintura Demo", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

    .card-box {
      border-top: 3px solid #000;
      border-left: 1px solid var(--border-light);
      border-right: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
      background-color: #ffffff;

      padding: 28px;
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card-box h3 {
      font-size: 20px;
      font-family: "Oswald", sans-serif;
      margin-bottom: 12px;
      font-weight: 400;
    }

    .card-box p, footer {
        font-family: "Montserrat", sans-serif;
      font-size: 15px;
      line-height: 1.6;
      color: var(--text-muted);
    }

    .plus {
      width: 44px;
      height: 44px;
      background: #eee;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 300;
      border-radius: 4px;
      cursor: pointer;
      user-select: none;
    }



    html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

/* Main wrapper */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Footer */
footer {
  margin-top: auto;
  text-align: center;
  font-size: 13px;
  color: #999;
  letter-spacing: 0.5px;
}


    /* Responsive */
    @media (max-width: 900px) {
      .cards {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .card-box {
        min-height: auto;
      }
      
    }


    @media (min-width: 1024px) {
  .container {
    justify-content: center;
  }

  .logo {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
  }

  .cards {
    margin: 0 auto;
  }

  footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
}


.card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  cursor: pointer;
}

.card-action .arrow {
  transition: transform 0.3s ease;
}

.card-action:hover .arrow {
  transform: translateX(4px);
}
.card-action {
  margin-top: 32px; /* same spacing on desktop & mobile */
}


.card {
  will-change: transform, opacity;
}

.card-box {
  transition: transform 0.4s ease;
}

.card:hover .card-box {
  transform: translateY(-6px);
}

.arrow {
  transition: transform 0.3s ease;
}

.card:hover .arrow {
  transform: translateX(6px);
}
