/* ============================================================
   SAGACITY INFORMATION SERVICES — Main Stylesheet
   Brand: #262262 (navy) / #92278f (magenta) / Poppins
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #262262;
  --magenta:    #92278f;
  --navy-dark:  #1a1830;
  --gradient:   linear-gradient(to right, #262262, #92278f);
  --gradient-d: linear-gradient(135deg, #262262 0%, #92278f 100%);
  --white:      #ffffff;
  --off-white:  #f7f6fb;
  --border:     #e6e4f0;
  --text-dark:  #1a1830;
  --text-body:  #4a4860;
  --text-muted: #7a7890;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--magenta); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 5rem 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-d);
  color: #fff;
  box-shadow: 0 4px 16px rgba(146,39,143,0.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(146,39,143,0.4);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

/* ── Section label / header helper ─────────────────────────── */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.6rem;
}
.section-header { max-width: 620px; margin-bottom: 3.5rem; }
.section-header p { font-size: 1.05rem; color: var(--text-body); margin-top: 0.65rem; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.25rem 0;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.nav.scrolled {
  background: #fff;
  box-shadow: 0 2px 24px rgba(38,34,98,0.08);
  padding: 0.75rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 38px; }
.logo-white { display: block; }
.logo-color { display: none; }
.nav.scrolled .logo-white { display: none; }
.nav.scrolled .logo-color { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.92rem;
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--text-dark); }
.nav.scrolled .nav-links a:hover { color: var(--magenta); }
.nav-links .btn-primary { color: #fff !important; padding: 0.6rem 1.4rem; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--navy); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem 2rem;
    gap: 1.1rem;
    box-shadow: 0 6px 24px rgba(38,34,98,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a,
  .nav.scrolled .nav-links a { color: var(--text-dark) !important; font-size: 1rem; }
  .nav-links a:hover,
  .nav.scrolled .nav-links a:hover { color: var(--magenta) !important; }
}

/* ── Hero (home) ─────────────────────────────────────────────── */
.hero {
  background: var(--gradient-d);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content { color: #fff; max-width: 680px; position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.hero h1 { color: #fff; margin-bottom: 1.4rem; }
.hero h1 span {
  display: block;
  font-style: italic;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}
.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--gradient-d);
  padding: 9rem 0 5rem;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.bg-off-white::after { background: var(--off-white); }
.page-hero h1 { color: #fff; margin-bottom: 0.9rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.08rem; max-width: 580px; }

/* ── Problem section ────────────────────────────────────────── */
.problem-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}
.problem-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 2rem 2rem 2.25rem;
  border-left: 4px solid var(--border);
  box-shadow: 0 2px 16px rgba(38,34,98,0.05);
}
.problem-card.pain { border-left-color: #c0397c; }
.problem-card.pain2 { border-left-color: #7a4abf; }
.problem-icon {
  width: 40px; height: 40px;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.problem-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.problem-card p { font-size: 0.95rem; margin: 0; }

.resolution {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 1rem;
}
.resolution h2 { margin-bottom: 0.75rem; }
.resolution-quote {
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin: 0.75rem 0 1rem;
}
.resolution p { font-size: 1rem; color: var(--text-body); max-width: 580px; margin: 0 auto; }

/* ── Value pillars ───────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.pillar-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 28px rgba(38,34,98,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(38,34,98,0.13);
}
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pillar-icon svg { width: 24px; height: 24px; color: #fff; }
.pillar-card h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.pillar-card p  { font-size: 0.93rem; margin: 0; }

/* ── Services overview cards (home) ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 28px rgba(38,34,98,0.07);
  background: linear-gradient(#fff, #fff) padding-box,
              var(--gradient) border-box;
  border: 2px solid transparent;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(38,34,98,0.12);
}
.service-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.service-card-icon svg { width: 22px; height: 22px; color: var(--magenta); }
.service-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.9rem; flex: 1; margin-bottom: 1.25rem; }
.service-card a  { font-size: 0.88rem; font-weight: 600; color: var(--magenta); }
.service-card a:hover { color: var(--navy); }

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band {
  background: var(--navy-dark);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.9rem; }
.cta-band p  { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ── Services detail page ────────────────────────────────────── */
.service-block { padding: 5rem 0; }
.service-block:nth-child(even) { background: var(--off-white); }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.service-block:nth-child(even) .service-block-inner { direction: rtl; }
.service-block:nth-child(even) .service-block-inner > * { direction: ltr; }
.service-visual {
  border-radius: 18px;
  background: var(--gradient-d);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-visual svg { width: 90px; height: 90px; color: rgba(255,255,255,0.85); }
.service-text h2 { margin-bottom: 0.9rem; }
.service-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.service-features li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gradient);
}

/* ── About page ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { font-size: 1rem; }
.stat-box {
  background: var(--gradient-d);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  color: #fff;
  text-align: center;
  position: sticky;
  top: 6rem;
}
.stat-item { margin-bottom: 1.5rem; }
.stat-item:last-child { margin-bottom: 0; }
.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.stat-label { font-size: 0.88rem; opacity: 0.8; margin-top: 0.3rem; }
.stat-divider { height: 1px; background: rgba(255,255,255,0.25); margin: 1.5rem 0; }
.mission-block {
  background: var(--off-white);
  border-left: 4px solid var(--magenta);
  border-radius: 0 12px 12px 0;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}
.mission-block p { font-size: 1.08rem; font-style: italic; color: var(--navy); font-weight: 500; margin: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  border-top: 3px solid var(--magenta);
  padding-top: 1.25rem;
}
.value-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.value-card p  { font-size: 0.9rem; margin: 0; }

/* ── Contact page ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 2.75rem;
  box-shadow: 0 8px 48px rgba(38,34,98,0.09);
}
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(146,39,143,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; padding: 0.95rem; font-size: 1rem; }

.form-status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.93rem;
  margin-top: 1rem;
  font-weight: 500;
}
.form-status.success { background: #e8f5e9; color: #2e7d32; display: block; }
.form-status.error   { background: #fce4ec; color: #c62828; display: block; }

.contact-info { padding-top: 0.5rem; }
.contact-info h3 { font-size: 1.1rem; margin-bottom: 1.75rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; color: #fff; }
.contact-item-text h4 { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.25rem; }
.contact-item-text p,
.contact-item-text a { font-size: 0.97rem; color: var(--text-dark); margin: 0; }
.contact-item-text a:hover { color: var(--magenta); }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img { height: 34px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; max-width: 300px; }
.footer-col h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: rgba(255,255,255,0.85); }

/* ── Education Services sub-brand ───────────────────────────── */
:root {
  --teal-deep:     #0e7490;
  --teal-bright:   #00a896;
  --teal-gradient: linear-gradient(135deg, #0e7490 0%, #00a896 100%);
  --teal-gradient-r: linear-gradient(to right, #0e7490, #00a896);
}
.es-label { color: var(--teal-bright); }
.es-hero {
  background: var(--teal-gradient);
}
.es-hero::after { background: var(--white); }
.es-badge {
  display: inline-block;
  background: rgba(14,116,144,0.08);
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1.5px solid rgba(14,116,144,0.22);
  margin-bottom: 1rem;
  display: inline-block;
}
.es-btn-primary {
  background: var(--teal-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,168,150,0.3);
}
.es-btn-primary:hover {
  box-shadow: 0 6px 24px rgba(0,168,150,0.4);
  color: #fff;
  opacity: 0.92;
}
.es-pillar-icon { background: var(--teal-gradient) !important; }
.es-service-card {
  background: linear-gradient(#fff, #fff) padding-box,
              var(--teal-gradient-r) border-box !important;
}
.es-service-card-icon svg { color: var(--teal-deep) !important; }
.es-cta-band { background: var(--teal-deep); }
.es-accent { color: var(--teal-deep); }
.es-visual { background: var(--teal-gradient) !important; }
.es-value-card { border-top-color: var(--teal-bright) !important; }
.es-stat-box { background: var(--teal-gradient) !important; }
.es-mission-block { border-left-color: var(--teal-bright) !important; }
.es-footer-accent { color: var(--teal-bright); }
.project-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 28px rgba(14,116,144,0.08);
  border-top: 3px solid var(--teal-bright);
  transition: transform 0.22s, box-shadow 0.22s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(14,116,144,0.14);
}
.project-card .project-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
  display: block;
}
.project-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.project-card p  { font-size: 0.93rem; margin: 0; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.sub-brand-bar {
  background: var(--teal-gradient);
  padding: 0.6rem 0;
  text-align: center;
}
.sub-brand-bar p {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  margin: 0;
}
.sub-brand-bar a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ── Product placeholders ────────────────────────────────────── */
.coming-soon-badge {
  display: inline-block;
  background: rgba(146,39,143,0.08);
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1.5px solid rgba(146,39,143,0.22);
  margin-bottom: 1rem;
  display: inline-block;
}
.product-placeholder { flex-direction: column; gap: 1.5rem; }
.product-placeholder svg { width: 80px; height: 80px; color: rgba(255,255,255,0.8); }
.product-placeholder-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}
.notify-strip {
  background: var(--off-white);
  border-radius: 14px;
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.notify-strip p { margin: 0; font-size: 0.95rem; }
.notify-strip strong { color: var(--navy); }

/* ── Active nav link ─────────────────────────────────────────── */
.nav-links a.active { font-weight: 700; }
.nav.scrolled .nav-links a.active { color: var(--magenta) !important; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .service-block-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block:nth-child(even) .service-block-inner { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat-box { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .hero { min-height: 100svh; }
  .problem-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
