/* Critical CSS for above-the-fold content */
html {
  scroll-behavior: smooth;
  background-color: #F8F9FA;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: scroll;
  min-height: 100vh;
}

@media (min-width: 768px) {
  html {
    background-attachment: fixed;
  }
}

body {
  background: transparent;
  color: #2C3E50;
  margin: 0;
  min-height: 100vh;
  font-feature-settings: "rlig" 1, "calt" 1;
  display: flex;
  flex-direction: column;
}
.gradient-text {
  background: linear-gradient(135deg, #2C3E50, #006D77);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Critical Hero Component Styles */
.hero-box-container {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0.75rem;
  border-width: 2px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  margin-bottom: 5px;
  transition: all 2000ms;
  border-color: #FFB4A2;
}
/* Utility classes for Hero */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.relative { position: relative; }
.pt-16 { padding-top: 4rem; }
.pb-24 { padding-bottom: 6rem; }
.container { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.max-w-7xl { max-width: 80rem; }
.p-12 { padding: 3rem; }
.text-center { text-align: center; }
.space-x-4 > * + * { margin-left: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.whitespace-nowrap { white-space: nowrap; }
.text-black { color: #000; }
@media (min-width: 768px) {
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:p-16 { padding: 4rem; }
}
@media (min-width: 640px) {
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
}