.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
}

.global-header__container h1 {
  font-size: 40px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
}

.main-content h2 {
  font-size: 18px;
  margin: 25px 0 15px;
  color: #1a2a6c;
  border-bottom: 2px solid #fdbb2d;
  padding-bottom: 8px;
}

.main-content h3 {
  font-size: 1.4rem;
  margin: 20px 0 10px;
  color: #b21f1f;
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 300;
  position: relative;
}

.intro {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
  position: relative;
}

.intro:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #1a2a6c, #fdbb2d);
  border-radius: 5px 0 0 5px;
}

.highlight {
  color: #b21f1f;
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #b21f1f, #fdbb2d);
  color: white;
  padding: 15px 40px;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(178, 31, 31, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(178, 31, 31, 0.4);
}

.cta-button:hover:before {
  left: 100%;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.benefit-card {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #1a2a6c, #fdbb2d);
}

.benefit-card h3 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.checkmark {
  color: #28a745;
  margin-right: 10px;
  font-size: 1.5rem;
}

.target-audience {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.audience-list {
  list-style-type: none;
  padding-left: 20px;
}

.audience-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.audience-list li:before {
  content: "•";
  color: #fdbb2d;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

.processes {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.processes-step {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.step-number {
  background-color: #1a2a6c;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.final-cta {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f);
  color: white;
  padding: 50px 30px;
  border-radius: 10px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.final-cta h2 {
  color: white;
  border-bottom: none;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .global-header{
    padding-top: 80px;
    height: auto;
  }
  .global-header__container h1 {
    font-size: 28px;
  }

  .main-content h2 {
    font-size: 15px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1.1rem;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
