:root {
  /* Logo-inspired color palette */
  --primary-red: #c41e1e;
  --primary-red-dark: #a01818;
  --primary-red-light: rgba(196, 30, 30, 0.1);

  --secondary-orange: #ff6b35;
  --secondary-orange-dark: #e55a2b;
  --secondary-orange-light: rgba(255, 107, 53, 0.1);

  --accent-gold: #ffba43;
  --accent-gold-dark: #e6a73d;
  --accent-gold-light: rgba(255, 186, 67, 0.1);

  /* Legacy color support */
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;

  /* Typography colors */
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;

  /* Typography sizes */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}
