/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "HN for Telus", sans-serif;
  line-height: 1.5;
}

/* Layout Utilities */
.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

/* Flexbox Utilities */
.justify-between {
  justify-content: space-between;
}

.justify-self-center {
  justify-self: center;
}

.flex-col {
  flex-direction: column;
}

/* Grid Utilities */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Spacing Utilities */
.gap-x-4 {
  column-gap: 1rem;
}

.gap-x-8 {
  column-gap: 2rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.gap-16 {
  gap: 4rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Width Utilities */
.w-full {
  width: 100%;
}

.w-32 {
  width: 8rem;
}

.w-6xl {
  width: 24rem;
}

.max-w-6xl {
  max-width: 72rem;
}

/* Typography */
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

/* Colors */
.text-white {
  color: #ffffff;
}

.bg-purple-700 {
  background-color: #7e22ce;
}

/* Border */
.rounded-full {
  border-radius: 9999px;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* Button Styles */
.bg-purple-700:hover {
  background-color: #6b21a8;
}

a.bg-purple-700 {
  display: inline-block;
  text-decoration: none;
}

/* Responsive Breakpoints (md: 768px and up) */
@media (min-width: 768px) {
  .md\:mb-8 {
    margin-bottom: 2rem;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:block {
    display: block;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
