.full-screen-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 150px); /*Adjusted for sticky header*/
  background-color: var(--background);
  padding: 0 40px;
  margin-bottom: 50px;
  /* margin-top: 76px; To ensure it doesn't go under the sticky header */
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-left p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.cta-button {
  display: inline-block;
  background-color: var(--primary-blue);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(51, 103, 214, 0.15);
}

.cta-button:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(51, 103, 214, 0.25);
}

/* Responsive Design */
@media (max-width: 960px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    flex: unset;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-left p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-right {
    margin-top: 20px;
  }
}
