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

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  background-color: #f1f2f6;
  color: #212529;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.global-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f1f2f6;
  z-index: -1;
}

.full-width-header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 12px 0;
}

.header-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  flex: 0 0 auto;
}

.logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.header-center-text {
  font-family: Arial, 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-align: center;
  flex: 1;
  margin: 0 20px;
}

.main-content-badge {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #333;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #f0f0f0;
  padding: 5px 12px;
  border-radius: 20px;
  flex: 0 0 auto;
}

.main-content {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  overflow: hidden;
}

.content-card {
  padding: 30px 30px 0;
}

.main-headline {
  margin-bottom: 30px;
  text-align: center;
}

.main-headline h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: rgba(0,0,0,0.87);
  text-align: center;
}

.hero-image {
  margin-bottom: 30px;
  overflow: hidden;
  max-height: 400px;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.text-content {
  font-size: 18px;
  color: #1e1e1e;
}

.text-content p {
  margin-bottom: 1.4em;
  font-weight: 400;
}

/* Steps Section */
.steps-section {
  margin: 30px 0 20px;
  padding: 0;
}

.steps-headline {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.step-item {
  font-size: 18px;
  margin-bottom: 10px;
}

.action-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 20px;
  flex-wrap: wrap;
}

.action-card {
  flex: 1 1 180px;
  min-width: 160px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-decoration: none;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  padding: 15px 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 60%);
  z-index: 1;
}

.action-card .card-label,
.action-card .card-cta {
  position: relative;
  z-index: 2;
  text-align: center;
}

.card-label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-cta {
  font-size: 16px;
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 30px;
  backdrop-filter: blur(2px);
  font-weight: 600;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.primary-cta-wrapper {
  text-align: center;
  margin: 20px 0 40px;
}

.primary-button {
  display: inline-block;
  background-color: #21ba45;
  color: white;
  font-family: 'Lato', 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 24px;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(33,186,69,0.3);
  transition: background 0.2s, transform 0.1s;
  border: none;
  text-align: center;
}

.primary-button:hover {
  background-color: #1a9e38;
  transform: scale(1.02);
}

.footer {
  background-color: #ffffff;
  padding: 30px 30px 20px;
  font-size: 13px;
  color: #555;
  border-top: 1px solid #ddd;
  margin-top: 10px;
}

.footer-copyright {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-disclaimer {
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-disclaimer p {
  margin-bottom: 8px;
}

.footer-links {
  text-align: center;
  font-family: 'Lato', 'Segoe UI', sans-serif;
  font-size: 14px;
}

.footer-links a {
  color: #2a6ebb;
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }

  .content-card {
    padding: 20px 20px 0;
  }

  .main-headline h1 {
    font-size: 32px;
  }

  .action-cards {
    gap: 15px;
  }

  .action-card {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .header-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .header-center-text {
    order: 3;
    flex-basis: 100%;
    margin: 5px 0 0;
  }

  .main-headline h1 {
    font-size: 28px;
  }

  .action-cards {
    flex-direction: column;
    align-items: center;
  }

  .action-card {
    width: 100%;
    max-width: 280px;
  }
}

.text-content a {
  color: #2a6ebb;
  text-decoration: underline;
  font-weight: 500;
}