/* Base Styles */
body {
  min-height: 100vh;
  overflow-x: hidden;
}

/* Fluid media */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* Typography */
h1 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
}

p {
  margin-bottom: var(--space-4);
}

.main-content {
  padding: var(--space-16) 0;
  min-height: 50vh;
}

.content-section {
  padding: var(--space-8) 0;
}

.content-section h2 {
  margin-bottom: var(--space-6);
}

/* Button Styles */
.cta-button {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--border-radius-lg);
  font-weight: var(--font-weight-medium);
  transition: var(--transition-all);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid transparent;
}

.cta-button:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Media Queries */
@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-3xl);
  }
  
  h2 {
    font-size: var(--font-size-2xl);
  }
  
  h3 {
    font-size: var(--font-size-xl);
  }
}