
:root {
  --font-family-base: 'Arial', sans-serif;
  --font-size-base: 1rem;
  --font-size-heading-lg: 2rem;
  --font-size-heading-md: 1.25rem;
  --line-height-base: 1.6;
  --font-weight-bold: 700;
  --color-primary: #022351;
  --color-text: #333;
  --color-bg-light: #ffffff;
  --color-bg-neutral: #f4f4f4;
}

/* Typography Defaults */
body, .content-section, .career-mode, .career-mode-portfolio {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg-light);
}

h1, h2, h3 {
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

h2 {
  font-size: var(--font-size-heading-lg);
  margin-bottom: 2rem;
}

h3 {
  font-size: var(--font-size-heading-md);
  margin-bottom: 1rem;
}

/* Layout Container */
.section-wrapper {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Use this class for card-like components */
.card {
  background: var(--color-bg-neutral);
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}
