/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: white;
}

.wrapper {
  min-height: 100vh;
  background: linear-gradient(to bottom, #1f2937, #111827);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header styles */
header {
  background-color: rgba(17, 24, 39, 0.5);
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo h1 {
  font-size: 1.25rem;
  font-weight: bold;
}

.call-button {
  background-color: #f3f4f6;
  color: #111827;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.call-button:hover {
  background-color: white;
}

/* Hero section styles */
main {
  padding: 3rem 0 5rem;
}

.hero {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero h3 {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #fbbf24;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-image {
  aspect-ratio: 16 / 9;
  max-height: 600px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Call to Action section styles */
.cta {
  padding: 3rem 0;
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fbbf24;
  color: #111827;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1.125rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: #f59e0b;
}

/* Footer styles */
footer {
  background-color: #111827;
  padding: 2rem 0;
}

.disclaimer {
  color: #9ca3af;
  text-align: center;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: #9ca3af;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

/* Responsive design */
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
}