#hero {
  background: url(../img/goliath.png) no-repeat top center;
  background-size: 100%;
  height: 800px;
  width: 100%;
  background-color: var(--text-color);
}

#hero cite{
  display: block;
  font-size: 12px;
}


.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.guarantee {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.9;
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box {
  margin-bottom: 30px;
}


/* Hero Section */
.hero-section {
  background-color: var(--inverted-primary-color);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 40px;
}

.benefit-image {
  flex: 1;
  max-width: 450px;
}

.benefit-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.benefit-content {
  flex: 1;
}

.benefit-content h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
}


@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }
  
  .hero-content, .hero-image {
    max-width: 100%;
  }
  
  .benefit-card {
    flex-direction: column;
  }
  
  .benefit-image, .benefit-content {
    max-width: 100%;
  }
}


