/* ============================================
   MERCADO GLOBAL MEDIA - DESIGN SYSTEM
   Strictly enforced across all components
   ============================================ */

:root {
  /* Color System - NO DEVIATIONS */
  --primary-color: #E15CD6;
  --primary-hover-color: #c94bc0;
  --primary-active-color: #b03da8;
  --primary-light: rgba(225, 92, 214, 0.1);
  --primary-medium: rgba(225, 92, 214, 0.15);
  --secondary-color: #58BDDC;
  --secondary-hover: #4aaac4;
  --secondary-light: rgba(88, 189, 220, 0.1);
  --background-color: #000;
  --text-color: #fff;
  --text-muted: rgba(255, 255, 255, 0.75);
  --text-light: rgba(255, 255, 255, 0.5);
  --surface-color: #0a0a0a;
  --surface-alt: #111111;
  --surface-elevated: #1a1a1a;
  --border-color: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --dark: #000000;
  --dark-surface: #050505;

  /* Typography - STRICT ENFORCEMENT */
  --heading-font: "Comfortaa", sans-serif;
  --body-font: "DM Sans", sans-serif;

  /* Font Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;
  --text-6xl: 4rem;

  /* UI System - CONSISTENT RADIUS */
  --border-radius: 65px;
  --border-radius-lg: 40px;
  --border-radius-md: 24px;
  --border-radius-sm: 16px;
  --border-radius-xs: 8px;

  /* Layout */
  --container-max: 1200px;
  --section-padding-y: 100px;
  --container-padding-x: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-primary: 0 8px 30px rgba(225, 92, 214, 0.4);
  --shadow-secondary: 0 8px 30px rgba(88, 189, 220, 0.4);
  --shadow-glow: 0 0 40px rgba(225, 92, 214, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY SYSTEM - STRICT
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-color);
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--text-5xl);
  }

  h2 {
    font-size: var(--text-4xl);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--text-6xl);
  }

  h2 {
    font-size: var(--text-5xl);
  }
}

p {
  font-family: var(--body-font);
  color: var(--text-muted);
}

.label {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-color);
  display: block;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--primary-color);
}

.highlight-secondary {
  color: var(--secondary-color);
}

/* ============================================
   LAYOUT SYSTEM
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
}

.section {
  padding: var(--section-padding-y) 0;
}

.section--surface {
  background-color: var(--surface-color);
}

.section--elevated {
  background-color: var(--surface-alt);
}

.section--primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5dcce9 100%);
  color: var(--white);
}

.section--primary h1,
.section--primary h2,
.section--primary h3,
.section--primary h4 {
  color: var(--white);
}

.section--primary p {
  color: rgba(255, 255, 255, 0.9);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.text-center {
  text-align: center;
}

/* ============================================
   BUTTON SYSTEM - STANDARDIZED
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--body-font);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background-image: linear-gradient(135deg, var(--primary-color) 0%, #5dcce9 100%);
  color: var(--white);
  border-color: var(--secondary-color);
}

.btn--primary:hover {
  background-color: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.btn--primary:active {
  background-color: var(--primary-active-color);
  border-color: var(--primary-active-color);
  transform: translateY(0);
}

.btn--secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.btn--secondary:hover {
  background-color: var(--secondary-hover);
  border-color: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-secondary);
}

.btn--outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn--outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline-white:hover {
  background-color: var(--white);
  color: var(--background-color);
}

.btn--white {
  background-color: var(--white);
  color: var(--background-color);
  border-color: var(--white);
}

.btn--white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: 1.25rem 3rem;
  font-size: var(--text-lg);
}

.btn--full {
  width: 100%;
}

.btn--icon {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
}

/* ============================================
   CARD SYSTEM - STANDARDIZED
   ============================================ */
.card {
  background-color: var(--surface-elevated);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  transition: all var(--transition-base);
  border: 1px solid var(--border-color);
}

.card--elevated {
  box-shadow: var(--shadow-md);
}

.card--elevated:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(225, 92, 214, 0.3);
}

.card--bordered {
  border: 1px solid var(--border-color);
}

.card--surface {
  background-color: var(--surface-alt);
}

.card--glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   FORM SYSTEM - STANDARDIZED
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--body-font);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  font-family: var(--body-font);
  font-size: var(--text-base);
  padding: 1rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--surface-alt);
  color: var(--text-color);
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.form-input::placeholder {
  color: var(--text-light);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.25rem;
  padding-right: 3.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.nav--scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(0, 0, 0, 0.95);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 1024px) {
  .nav__inner {
    justify-content: space-between;
  }
}

.nav__logo {
  height: 60px;
  width: auto;
}

@media (min-width: 768px) {
  .nav__logo {
    height: 90px;
  }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-family: var(--body-font);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.nav__link:hover {
  color: var(--primary-color);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta .btn {
  padding: 0.75rem 1.75rem;
}

.nav__mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 1024px) {
  .nav__mobile-toggle {
    display: none;
  }
}

.nav__mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #000000;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 160px;
    padding-bottom: 120px;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hero__title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: var(--text-lg);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: var(--text-xl);
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  border: 3px solid var(--background-color);
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__trust-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
}

.hero__badge .material-symbols-outlined {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hero__image {
  position: relative;
}

.hero__image img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.hero__stat {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background-color: var(--surface-elevated);
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-color);
}

@media (max-width: 767px) {
  .hero__stat {
    display: none;
  }
}

.hero__stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__stat-icon .material-symbols-outlined {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.hero__stat-value {
  font-family: var(--heading-font);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-color);
}

.hero__stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.package {
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
}

@media (min-width: 768px) {
  .package {
    padding: 3rem;
  }
}

.package__header {
  display: block;
  align-items: flex-start;
  margin-bottom: 2rem;

}

.package__title {
  font-size: var(--text-2xl);
  margin-bottom: 0.5rem;
}

.package__desc {
  font-size: var(--text-base);
}

.package__price {
  text-align: left;
}

.package__price-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package__price-value {
  font-family: var(--heading-font);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary-color);
}

.package__features {
  margin-bottom: 2rem;
}

.package__feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: var(--text-base);
}

.package__feature:last-child {
  border-bottom: none;
}

.package__feature .material-symbols-outlined {
  color: var(--primary-color);
  font-size: 1.375rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-md);
}

.feature__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature__icon .material-symbols-outlined {
  font-size: 2rem;
  color: var(--primary-color);
}

.feature__title {
  margin-bottom: 1rem;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-us__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.why-us__title {
  margin-bottom: 3rem;
}

.why-us__item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.why-us__item:last-child {
  margin-bottom: 0;
}

.why-us__item-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us__item-icon .material-symbols-outlined {
  color: var(--white);
  font-size: 1.5rem;
}

.why-us__item h4 {
  margin-bottom: 0.5rem;
}

.why-us__image img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
}

.testimonial__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.testimonial__stars .material-symbols-outlined {
  color: var(--secondary-color);
  font-size: 1.25rem;
}

.testimonial__text {
  font-style: italic;
  font-size: var(--text-base);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface-alt), var(--surface-elevated));
}

.testimonial__name {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--text-color);
}

.testimonial__role {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================
   QUOTE FORM SECTION
   ============================================ */
.form-section {
  max-width: 720px;
  margin: 0 auto;
}

.form-section__card {
  padding: 3rem;
  border-radius: var(--border-radius-lg);
}

@media (min-width: 768px) {
  .form-section__card {
    padding: 4rem;
  }
}

.form-section__title {
  margin-bottom: 0.5rem;
}

.form-section__subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-top: 1.25rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid transparent;
  transition: all var(--transition-base);
}

.faq__item--active {
  border-left-color: var(--primary-color);
}

.faq__item:hover {
  transform: translateX(4px);
}

.faq__question {
  margin-bottom: 0.75rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: linear-gradient(135deg, var(--surface-elevated) 0%, var(--surface-alt) 100%);
  color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .cta {
    padding: 6rem 4rem;
  }
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.08;
  pointer-events: none;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: var(--text-lg);
  position: relative;
  z-index: 1;
}

.cta .btn {
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--surface-color);
  color: var(--white);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__logo {
  height: 90px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.8;
}

.footer__title {
  font-family: var(--body-font);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.footer__links li {
  margin-bottom: 0.875rem;
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer__copyright {
  font-size: var(--text-sm);
  color: var(--text-light);
}

/* ============================================
   MOBILE CTA
   ============================================ */
.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 2rem);
  max-width: 400px;
}

@media (min-width: 1024px) {
  .mobile-cta {
    display: none;
  }
}

.mobile-cta .btn {
  width: 100%;
  box-shadow: var(--shadow-primary);
}

/* ============================================
   UTILITIES
   ============================================ */
.mb-1 {
  margin-bottom: 0.5rem;
}

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

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

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

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

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

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* Material Icons */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.filled {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}