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

/* BODY */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(
      rgba(255, 255, 255, 0.55),
      rgba(251, 27, 27, 0.55)
    ),
    url("assets/img/landing-bg.jpg") center / cover no-repeat fixed;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* CONTENT CARD */
.container {
  max-width: 900px;
  width: 100%;
  background: linear-gradient(
      rgba(255, 255, 255, 0.55),
      rgba(250, 164, 164, 0.55)
    ),
    url("assets/img/landing-bg.jpg") center / cover no-repeat fixed;
  padding: 50px 40px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(247, 247, 247, 0.6);
  animation: fadeInUp 1.2s ease forwards;
}

/* LOGO */
.logo {
  display: block;
  margin: 0 auto 30px;
  max-width: 180px;
  animation: fadeIn 1.5s ease forwards;
}

/* SECTION TITLES */
.section-title {
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: bold;
  color: #000;
  letter-spacing: 1px;
  animation: fadeIn 1.8s ease forwards;
}

/* PARAGRAPHS */
p {
  font-size: 16px;
  line-height: 1.8;
  color: #4d4d4d;
  margin-bottom: 15px;
  animation: fadeIn 2s ease forwards;
}

/* HIGHLIGHT TEXT */
strong {
  color: #4d4d4d;
  font-weight: 600;
}

/* ACTION BUTTON (MATCH LANDING PAGE) */
.action-button {
  display: inline-block;
  margin: 25px auto;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid #f43030;
  background: #fafafa;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.action-button:hover {
  background: red;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* TOP BUTTON ALIGNMENT */
.top-button {
  display: block;
  width: fit-content;
  margin: 0 auto 40px;
}

/* BOTTOM CTA */
.bottom-cta {
  margin-top: 50px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 40px;
}


/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    padding: 35px 25px;
  }

  .section-title {
    font-size: 24px;
  }

  p {
    font-size: 15px;
  }

  .logo {
    max-width: 140px;
  }
}
