/* Hero Statement Section */
.hero-statement {
  padding: 2rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
  opacity: 0.15;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
}

.statement-content {
  max-width: 900px;
  margin: 0 auto;
}

.statement-globe {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.statement-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.statement-subtitle {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.statement-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 auto 3rem;
  max-width: 800px;
  opacity: 0.95;
}

.statement-text p {
  margin-bottom: 1.5rem;
}

.statement-text strong {
  font-weight: 600;
  color: #fff;
}

.statement-cta {
  margin-top: 3rem;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: white;
  color: #667eea;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-decoration {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  letter-spacing: 15px;
  opacity: 0.7;
  animation: fly 8s linear infinite;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes fly {
  0% { transform: translateX(-100px); opacity: 0; }
  10%, 90% { opacity: 0.7; }
  100% { transform: translateX(100px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-statement {
    padding: 6rem 2rem;
  }
  
  .statement-title {
    font-size: 3.2rem;
  }
  
  .statement-subtitle {
    font-size: 1.7rem;
  }
  
  .statement-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .statement-title {
    font-size: 2.8rem;
  }
  
  .statement-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .statement-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-statement {
    padding: 1rem 1.5rem;
  }
  
  .statement-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  
  .statement-subtitle {
    font-size: 1.3rem;
  }
  
  .statement-globe {
    font-size: 3rem;
  }
  
  .cta-decoration {
    letter-spacing: 10px;
    font-size: 1.2rem;
  }
}