/* ==========================================================================
   Maya Assistant Website - Custom Premium Design System
   Domain: heymaya.co.in
   File: style.css
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* HSL Color Tokens */
  --bg-obsidian: hsl(220, 25%, 5%);
  --bg-card: hsl(220, 20%, 9%);
  --bg-card-hover: hsl(220, 20%, 12%);
  --border-glass: rgba(255, 255, 255, 0.07);
  --border-glass-focus: rgba(255, 255, 255, 0.15);

  --accent-green: hsl(142, 70%, 50%);
  --accent-green-glow: hsla(142, 70%, 50%, 0.35);
  --accent-red: hsl(350, 80%, 55%);
  --accent-red-glow: hsla(350, 80%, 55%, 0.35);
  --accent-gold: hsl(45, 100%, 50%);
  --accent-gold-glow: hsla(45, 100%, 50%, 0.35);

  --text-primary: hsl(0, 0%, 98%);
  --text-secondary: hsl(220, 10%, 75%);
  --text-muted: hsl(220, 8%, 55%);

  --shadow-glow: 0 0 30px var(--accent-green-glow);
  --shadow-glow-red: 0 0 30px var(--accent-red-glow);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--bg-card-hover);
}

/* Premium Layout Elements */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sticky Header & Navbar */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(8, 9, 12, 0.7);
  border-bottom: 1px solid var(--border-glass);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

.logo span {
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-cta {
  background: var(--accent-green);
  color: var(--bg-obsidian);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-green-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--accent-green);
  position: relative;
  display: inline-block;
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-secondary {
  border: 1px solid var(--border-glass-focus);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Pulsing Voice Core Graphic */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.assistant-core {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, rgba(8,9,12,0.8) 100%);
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.assistant-ring-outer {
  position: absolute;
  width: 110%;
  height: 110%;
  border: 1px dashed rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  animation: rotate-dashed 40s linear infinite;
}

.assistant-ring-middle {
  position: absolute;
  width: 90%;
  height: 90%;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  opacity: 0.7;
  animation: pulse-ring 2s infinite ease-in-out;
  box-shadow: var(--shadow-glow);
}

.assistant-center {
  width: 70px;
  height: 70px;
  background: var(--text-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: var(--transition-smooth);
}

.assistant-center svg {
  fill: var(--bg-obsidian);
  width: 32px;
  height: 32px;
  transition: var(--transition-smooth);
}

.assistant-core.active .assistant-ring-middle {
  border-color: var(--accent-red);
  box-shadow: var(--shadow-glow-red);
  animation: pulse-ring-fast 1s infinite ease-in-out;
}

.assistant-core.active .assistant-center {
  background: var(--accent-red);
}

.assistant-core.active .assistant-center svg {
  fill: var(--text-primary);
}

.voice-label {
  position: absolute;
  bottom: -40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Dynamic Interactive Simulator Section */
.simulator {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-obsidian) 0%, var(--bg-card) 50%, var(--bg-obsidian) 100%);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--accent-green);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.sim-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  align-items: stretch;
}

.sim-interface {
  display: flex;
  flex-direction: column;
  background: hsl(220, 20%, 7%);
  border: 1px solid var(--border-glass-focus);
  border-radius: 16px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.sim-header {
  background: var(--bg-card);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-glass);
}

.sim-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sim-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
}

.sim-chat-area {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-bubble {
  max-width: 80%;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  animation: fadeIn 0.4s ease forwards;
}

.chat-bubble.bot {
  background: var(--bg-card);
  color: var(--text-primary);
  align-self: flex-start;
  border-top-left-radius: 0;
  border: 1px solid var(--border-glass);
}

.chat-bubble.user {
  background: var(--accent-green);
  color: var(--bg-obsidian);
  align-self: flex-end;
  border-top-right-radius: 0;
  font-weight: 500;
}

.sim-input-area {
  padding: 1rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-glass);
  display: flex;
  gap: 0.75rem;
}

.sim-input {
  flex: 1;
  background: var(--bg-obsidian);
  border: 1px solid var(--border-glass-focus);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.sim-input:focus {
  outline: none;
  border-color: var(--accent-green);
}

.btn-send {
  background: var(--accent-green);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.btn-send:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(34,197,94,0.4);
}

.btn-send svg {
  fill: var(--bg-obsidian);
  width: 20px;
  height: 20px;
}

/* Simulator Sidebar Controller */
.sim-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.sim-controls h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.preset-query-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 1.25rem;
  border-radius: 12px;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.preset-query-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-green);
  transform: translateX(4px);
}

.preset-query-btn.active {
  background: rgba(34, 197, 94, 0.05);
  border-color: var(--accent-green);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}

.preset-icon {
  background: rgba(255,255,255,0.03);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.preset-query-btn:hover .preset-icon {
  background: rgba(34,197,94,0.1);
}

.preset-query-btn.active .preset-icon {
  background: var(--accent-green);
}

.preset-query-btn.active .preset-icon svg {
  fill: var(--bg-obsidian);
}

.preset-text h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.preset-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Pricing Card Layout in Chat Simulation */
.product-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.price-card {
  background: var(--bg-obsidian);
  border: 1px solid var(--border-glass);
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
}

.price-card.cheapest {
  border-color: var(--accent-green);
  background: rgba(34, 197, 94, 0.03);
}

.price-card img {
  max-width: 40px;
  margin-bottom: 0.25rem;
}

.price-merchant {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 0.2rem 0;
}

.btn-buy {
  display: block;
  width: 100%;
  background: var(--border-glass-focus);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.price-card.cheapest .btn-buy {
  background: var(--accent-green);
  color: var(--bg-obsidian);
}

.price-card.cheapest .btn-buy:hover {
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.btn-buy:hover {
  background: rgba(255,255,255,0.2);
}

/* Sweeping Laser Effect (OCR feature simulation) */
.laser-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  margin-top: 0.5rem;
}

.laser-sweeper {
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--accent-green);
  box-shadow: 0 0 15px var(--accent-green);
  animation: laser-sweep 2.5s infinite linear;
  z-index: 5;
}

/* Feature Grid */
.features {
  padding: 6rem 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-focus);
  transform: translateY(-5px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(200px circle at var(--x, 0px) var(--y, 0px), rgba(255,255,255,0.04), transparent 80%);
  pointer-events: none;
}

.feature-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.icon-green {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.icon-green svg { fill: var(--accent-green); }

.icon-red {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.icon-red svg { fill: var(--accent-red); }

.icon-gold {
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.icon-gold svg { fill: var(--accent-gold); }

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Compliance Section */
.compliance {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.compliance-box {
  background: var(--bg-obsidian);
  border: 1px solid var(--border-glass-focus);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
  position: relative;
}

.compliance-badge {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  color: var(--accent-green);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compliance-box h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.compliance-box p {
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.compliance-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: left;
  border-top: 1px solid var(--border-glass);
  padding-top: 2.5rem;
}

.comp-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.comp-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq {
  padding: 6rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-icon {
  fill: var(--text-secondary);
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  fill: var(--accent-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 200px;
}

/* Modals for legal terms */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass-focus);
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(255,255,255,0.15);
}

.modal-close svg {
  fill: var(--text-primary);
  width: 18px;
  height: 18px;
}

.modal-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.5rem;
}

.modal-text h4 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem 0;
}

.modal-text p, .modal-text li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.modal-text ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Footer styling */
footer {
  background: hsl(220, 20%, 3%);
  border-top: 1px solid var(--border-glass);
  padding: 5rem 0 2rem 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer-logo span {
  color: var(--accent-green);
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

/* Animations */
@keyframes rotate-dashed {
  100% { transform: rotate(360deg); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 0.3; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes pulse-ring-fast {
  0% { transform: scale(0.92); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 0.4; }
  100% { transform: scale(0.92); opacity: 0.9; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes laser-sweep {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* Responsive Grid and Mobile Tweaks */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-ctas {
    justify-content: center;
  }
  .sim-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Mobile menu can be scaled later */
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
