/* Base styles and resets */
:root {
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  line-height: 1.4;
  font-size: 14px;
}

/* Layout Components */
.container {
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

.steps-container {
  width: 100%;
  padding: var(--spacing-md);
}

.questions-container {
  width: 100%;
  padding: var(--spacing-md);
}

/* TOGGLE BACKGROUND COLOR */
/* .gdm-section {
  background-color: #eadfbd;
} */

/* Step Components */
.step {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.step-text,
.step-image {
  width: 100%;
}

/* Typography */
.step-text h2 {
  font-size: 2rem;
  color: #2563EB;
  margin-bottom: 0.5rem;
}

.step-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text p {
  font-size: 1rem;
  color: #555;
  max-width: 400px;
  margin: 0 auto;
}

/* Images */
.step-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

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

/* Table Styles */
table {
  width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

/* Responsive Breakpoints */
@media only screen and (min-width: 320px) {
  /* Mobile first styles */
}

@media only screen and (min-width: 375px) {
  body {
    font-size: 15px;
  }

  section h1 {
    font-size: 2rem !important;
  }

  .hero-text p {
    font-size: 1rem !important;
  }

  .icon {
    width: 22px;
    height: 22px;
  }

  .logo-img {
    height: 3rem !important;
  }

  .gdm-logo {
    width: 80px !important;
    height: 80px !important;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media only screen and (min-width: 640px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }

  section h1 {
    font-size: 3rem !important;
    /* padding: var(--spacing-lg); */
  }

  .hero-text p {
    font-size: 1.1rem !important;
    padding: var(--spacing-md);
  }

  .step {
    flex-direction: row;
    gap: var(--spacing-xl);
  }

  .step-image img {
    width: 320px;
  }

  header nav {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .icon {
    width: 24px;
    height: 24px;
  }

  .logo-img {
    height: 4rem !important;
  }

  .gdm-logo {
    width: 120px !important;
    height: 120px !important;
  }

  .questions-container {
    max-width: 800px;
    margin: 0 auto;
  }

  table {
    display: table;
  }
}

@media only screen and (min-width: 1024px) {
  body {
    font-size: 17px;
  }

  section h1 {
    font-size: 3.5rem !important;
  }

  .hero-text p {
    font-size: 1.2rem !important;
  }

  .container {
    max-width: 960px;
    margin: 0 auto;
  }

  .step-image img {
    width: 360px;
  }
}

@media only screen and (min-width: 1280px) {
  body {
    font-size: 18px;
  }

  section h1 {
    font-size: 4.375rem !important;
  }

  .container {
    max-width: 1200px;
  }

  .step-image img {
    width: 400px;
  }
}

@media only screen and (min-width: 1536px) {
  .container {
    max-width: 1400px;
  }

  .step-image img {
    width: 480px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-btn,
  .step-image {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }
}

/* Add to existing styles */

/* Responsive Typography */
section h1 {
  font-size: 1.8rem !important;
  line-height: 1.2;
  padding: 0.5rem;
}

.hero-text p {
  font-size: 0.9rem !important;
  padding: 0.5rem;
}

/* Logo and Image Sizes */
.logo-img {
  height: 2.5rem !important;
}

.gdm-logo {
  width: 60px !important;
  height: 60px !important;
}

/* Utility Classes */
.xs\:text-[18px] { font-size: 18px; }
.xs\:text-[24px] { font-size: 24px; }
.xs\:p-5 { padding: 1.25rem; }
.xs\:p-6 { padding: 1.5rem; }
.xs\:mb-4 { margin-bottom: 1rem; }
.xs\:gap-6 { gap: 1.5rem; }
.xs\:block { display: block; }

/* Container Adjustments */
.container {
  padding-left: 12px;
  padding-right: 12px;
}

/* Responsive Styles */
@media only screen and (min-width: 375px) {
  body {
    font-size: 15px;
  }

  section h1 {
    font-size: 2rem !important;
  }

  .hero-text p {
    font-size: 1rem !important;
  }

  .icon {
    width: 22px;
    height: 22px;
  }

  .logo-img {
    height: 3rem !important;
  }

  .gdm-logo {
    width: 80px !important;
    height: 80px !important;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media only screen and (min-width: 640px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .hero-text p {
    font-size: 1.1rem !important;
    padding: var(--spacing-md);
  }

  .step {
    flex-direction: row;
    gap: var(--spacing-xl);
  }

  .step-image img {
    width: 320px;
  }

  header nav {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .icon {
    width: 24px;
    height: 24px;
  }

  .logo-img {
    height: 4rem !important;
  }

  .gdm-logo {
    width: 120px !important;
    height: 120px !important;
  }

  .questions-container {
    max-width: 800px;
    margin: 0 auto;
  }

  table {
    display: table;
  }
}

@media only screen and (min-width: 1024px) {
  body {
    font-size: 17px;
  }

  section h1 {
    font-size: 3.5rem !important;
  }

  .hero-text p {
    font-size: 1.2rem !important;
  }

  .container {
    max-width: 960px;
    margin: 0 auto;
  }

  .step-image img {
    width: 360px;
  }
}

@media only screen and (min-width: 1280px) {
  body {
    font-size: 18px;
  }

  section h1 {
    font-size: 4.375rem !important;
  }

  .container {
    max-width: 1200px;
  }

  .step-image img {
    width: 400px;
  }
}

@media only screen and (min-width: 1536px) {
  .container {
    max-width: 1400px;
  }

  .step-image img {
    width: 480px;
  }
} 