/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-telugu: 'Noto Sans Telugu', var(--font-main);
  
  --bg-slate-950: #020617;
  --bg-slate-900: #0f172a;
  --bg-slate-800: #1e293b;
  --bg-slate-700: #334155;
  
  --text-white: #ffffff;
  --text-slate-100: #f1f5f9;
  --text-slate-200: #e2e8f0;
  --text-slate-300: #cbd5e1;
  --text-slate-400: #94a3b8;
  --text-slate-500: #64748b;
  --text-slate-700: #334155;
  --text-slate-900: #0f172a;
  
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;
  
  --purple-400: #c084fc;
  --purple-600: #9333ea;
  
  --green-400: #4ade80;
  --yellow-400: #facc15;
  --orange-400: #fb923c;
  --pink-400: #f472b6;
  --red-400: #f87171;
  
  --border-slate-800: #1e293b;
  --border-slate-700: #334155;
  --border-slate-200: #e2e8f0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-slate-950);
  color: var(--text-slate-300);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.telugu-font {
  font-family: var(--font-telugu);
}

/* Layout Utilities */
.container {
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.container-narrow {
  max-width: 56rem; /* 896px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-prose {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

/* Typography & Visual Helpers */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--purple-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mesh-gradient {
  background-color: var(--bg-slate-900);
  background-image:
    radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.2) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(147, 51, 234, 0.2) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(37, 99, 235, 0.2) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(147, 51, 234, 0.2) 0px, transparent 50%);
}

.mesh-gradient-subtle {
  background-color: var(--bg-slate-900);
  background-image:
    radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(147, 51, 234, 0.1) 0px, transparent 50%);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.brand-logo-sm {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links-desktop {
    display: flex;
  }
}

.nav-link {
  color: var(--text-slate-300);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-white);
}

.btn-primary {
  background-color: var(--blue-600);
  color: var(--text-white);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--blue-700);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

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

.mobile-menu-toggle {
  display: block;
  background: transparent;
  border: none;
  color: var(--text-white);
  padding: 0.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background-color: var(--bg-slate-900);
  border-top: 1px solid var(--border-slate-800);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.5rem 0;
}

.mobile-menu .btn-primary {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-alt {
  0% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-15px) translateX(10px); }
  100% { transform: translateY(0px) translateX(0px); }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 8s ease-in-out 1s infinite;
}

.animate-float-alt {
  animation: float-alt 7s ease-in-out infinite;
}

.animate-ping {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
}

.hero-icon-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(59, 130, 246, 0.1);
  color: #93c5fd;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin-bottom: 2rem;
}

.ping-dot {
  position: relative;
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
}

.ping-dot-inner {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 9999px;
  background-color: var(--blue-500);
  opacity: 0.75;
}

.ping-dot-base {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  height: 0.5rem;
  width: 0.5rem;
  background-color: var(--blue-500);
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-slate-300);
  line-height: 1.625;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.btn-hero-primary {
  width: 100%;
  padding: 1rem 2.5rem;
  background-color: var(--blue-600);
  color: var(--text-white);
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(30, 58, 138, 0.4);
  transition: all 0.2s ease;
}

@media (min-width: 640px) {
  .btn-hero-primary {
    width: auto;
  }
}

.btn-hero-primary:hover {
  background-color: var(--blue-700);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  width: 100%;
  padding: 1rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

@media (min-width: 640px) {
  .btn-hero-secondary {
    width: auto;
  }
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-white);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-slate-400);
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: var(--bg-slate-950);
  position: relative;
}

.grid-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--bg-slate-800) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.2;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--blue-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-white);
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

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

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

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

.feature-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-slate-800);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background-color: var(--bg-slate-900);
  border-color: var(--border-slate-700);
  box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.25);
  transform: translateY(-2px);
}

.feature-icon-wrapper {
  background-color: var(--bg-slate-800);
  padding: 0.75rem;
  border-radius: 1rem;
  width: fit-content;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.feature-card-desc {
  color: var(--text-slate-400);
  line-height: 1.625;
}

/* Offers Section */
.offers-section {
  padding: 8rem 0;
  background-color: var(--bg-slate-950);
  position: relative;
  overflow: hidden;
}

.glow-ambient-1 {
  position: absolute;
  top: 25%;
  right: 0;
  width: 500px;
  height: 500px;
  background-color: rgba(37, 99, 235, 0.05);
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
}

.glow-ambient-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background-color: rgba(147, 51, 234, 0.05);
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
}

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

@media (min-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.offer-card {
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid var(--border-slate-800);
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.offer-card.orange:hover {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 20px 25px -5px rgba(124, 45, 18, 0.2);
}

.offer-card.pink:hover {
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 20px 25px -5px rgba(131, 24, 67, 0.2);
}

.offer-card.red:hover {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 20px 25px -5px rgba(127, 29, 29, 0.2);
}

.offer-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid;
}

.offer-badge.orange {
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--orange-400);
  border-color: rgba(249, 115, 22, 0.2);
}

.offer-badge.pink {
  background-color: rgba(236, 72, 153, 0.1);
  color: var(--pink-400);
  border-color: rgba(236, 72, 153, 0.2);
}

.offer-badge.red {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--red-400);
  border-color: rgba(239, 68, 68, 0.2);
}

.offer-benefit-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: rgba(2, 6, 23, 0.5);
  border: 1px solid rgba(30, 41, 59, 0.5);
  margin-bottom: 1.5rem;
}

.btn-offer {
  width: 100%;
  padding: 1rem;
  color: var(--text-white);
  border-radius: 0.75rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.btn-offer.orange {
  background: linear-gradient(to right, #ea580c, #f97316);
}
.btn-offer.orange:hover {
  background: linear-gradient(to right, #f97316, #fb923c);
}

.btn-offer.pink {
  background: linear-gradient(to right, #db2777, #ec4899);
}
.btn-offer.pink:hover {
  background: linear-gradient(to right, #ec4899, #f472b6);
}

.btn-offer.red {
  background: linear-gradient(to right, #dc2626, #ef4444);
}
.btn-offer.red:hover {
  background: linear-gradient(to right, #ef4444, #f87171);
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background-color: var(--bg-slate-950);
  position: relative;
}

.pricing-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .pricing-layout {
    flex-direction: row;
  }
  .pricing-left, .pricing-right {
    width: 50%;
  }
}

.pricing-badge {
  display: inline-block;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--blue-400);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin-bottom: 1rem;
}

.pricing-card-wrapper {
  position: relative;
  padding: 0.25rem;
  border-radius: 1.5rem;
  background: linear-gradient(to top right, var(--blue-600), var(--purple-600));
  box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.3);
  width: 100%;
}

.pricing-card-inner {
  background-color: var(--bg-slate-900);
  border-radius: 1.4rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
}

.popular-tag span {
  background-color: var(--blue-600);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-white);
}

.price-period {
  color: var(--text-slate-400);
  font-size: 1.125rem;
}

.divider {
  height: 1px;
  background-color: var(--border-slate-800);
  margin: 1.5rem 0;
}

.btn-pricing-action {
  width: 100%;
  padding: 1.25rem;
  background-color: var(--text-white);
  color: var(--text-slate-900);
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-pricing-action:hover {
  background-color: #eff6ff;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background-color: var(--bg-slate-900);
  border-top: 1px solid var(--border-slate-800);
}

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

.faq-card {
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border-slate-700);
  border-radius: 1rem;
  padding: 2rem;
  transition: background-color 0.2s ease;
}

.faq-card:hover {
  background-color: var(--bg-slate-800);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--text-slate-400);
  line-height: 1.625;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background-color: var(--bg-slate-900);
}

.cta-box {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

.cta-icon-container {
  display: inline-flex;
  background-color: rgba(30, 58, 138, 0.2);
  padding: 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  margin-bottom: 2.5rem;
}

.btn-whatsapp {
  background-color: var(--blue-600);
  color: var(--text-white);
  padding: 1.25rem 3rem;
  border-radius: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.5);
  transition: all 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: var(--blue-700);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background-color: var(--bg-slate-900);
  padding-top: 6rem;
  padding-bottom: 3rem;
  color: var(--text-slate-400);
  border-top: 1px solid var(--border-slate-800);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-col-main {
    grid-column: span 2;
  }
}

.social-icon-btn {
  padding: 0.75rem;
  background-color: var(--bg-slate-800);
  border-radius: 0.75rem;
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.social-icon-btn:hover {
  background-color: var(--blue-600);
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 1rem;
}

.footer-links-list a:hover {
  color: var(--blue-400);
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid var(--border-slate-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-legal-links a:hover {
  color: var(--text-white);
}

/* Static Subpages (Privacy & Terms) */
.subpage-main {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.subpage-card {
  background-color: #ffffff;
  color: #334155;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(226, 232, 240, 0.5);
}

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

.subpage-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .subpage-title {
    font-size: 3rem;
  }
}

.subpage-date {
  color: #64748b;
  margin-bottom: 3rem;
}

.prose-section {
  margin-bottom: 2rem;
}

.prose-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.prose-section p {
  line-height: 1.75;
  font-size: 1.125rem;
}
