/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
  padding: 100px 0;
  text-align: center;
  transition: background 0.3s ease;
  background-image: url(../css/gifs/delivery\ motor.gif);
  background-repeat: no-repeat;
  background-position: 90% center;
background-size:  550px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-tertiary);
  line-height: 1.2;
  max-width: 700px;
  transition: color 0.3s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  transition: color 0.3s ease;
}
