:root {
  --bg: #08111f;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --card: #ffffff;
  --text: #d8e3f1;
  --text-dark: #102033;
  --muted: #96a7bc;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #4ec6ff;
  --primary-2: #7ff0d1;
  --accent: #0ea5e9;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(3, 10, 25, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(78, 198, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(127, 240, 209, 0.1), transparent 22%),
    linear-gradient(180deg, #07111e 0%, #0a1422 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.site-shell { overflow: clip; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 30, 0.68);
  border-bottom: 1px solid var(--line);
}
.topbar.compact { position: relative; }
.topbar-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.brand strong { display: block; font-size: 1rem; color: var(--white); }
.brand small { color: var(--muted); }
.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav a {
  color: var(--text);
  font-weight: 500;
  opacity: 0.95;
}
.nav a:hover { color: var(--white); }
.inline-nav { gap: 1rem; }

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: var(--panel);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #062033;
  box-shadow: 0 16px 35px rgba(78, 198, 255, 0.25);
}
.btn-secondary {
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.btn-nav {
  min-height: 44px;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.btn-block { width: 100%; }

.hero {
  position: relative;
  padding: 5rem 0 4rem;
}
.hero-gradient {
  position: absolute;
  inset: -10% -20% auto auto;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(78, 198, 255, 0.15), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: var(--primary-2);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.eyebrow-light { background: rgba(255,255,255,0.08); }
.hero h1, .inquiry-page h1, .price-list-page h1 {
  margin: 1rem 0;
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 0.96;
  color: var(--white);
}
.hero p,
.section-head p,
.about-grid p,
.faq-grid p,
.inquiry-page p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trust-row div {
  min-width: 130px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}
.trust-row strong {
  display: block;
  font-size: 1.3rem;
  color: var(--white);
}
.trust-row span { color: var(--muted); font-size: 0.95rem; }

.glass,
.glass-soft,
.process-wrap,
.review-card,
.stat-card,
.faq-list details,
.inquiry-form,
.mini-info {
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
}
.glass-soft,
.process-wrap,
.review-card,
.stat-card,
.faq-list details,
.inquiry-form,
.mini-info {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
}
.hero-card { padding: 1.5rem; }
.hero-panel-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-2);
  box-shadow: 0 0 0 6px rgba(127, 240, 209, 0.12);
}
.hero-card h2 { color: var(--white); font-size: 1.6rem; margin: 1rem 0; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-2);
  font-weight: 800;
}
.mini-cta { margin-top: 1.2rem; }

.logos-strip { padding-top: 1.5rem; }
.logos-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
  color: var(--muted);
}
.logos-grid > * {
  padding: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.logos-grid span { text-align: left; }

.section-head {
  max-width: 780px;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.section-head.left { margin: 0 0 2rem; text-align: left; }
.section-head h2,
.about-grid h2,
.faq-grid h2,
.cta-box h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0.9rem 0 0.8rem;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.service-card,
.review-card {
  padding: 1.5rem;
}
.service-card .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card h3,
.step-card h3,
.gallery-overlay h3 { color: var(--white); }
.service-card p,
.step-card p,
.review-card p { color: var(--muted); line-height: 1.7; }
.service-card a {
  color: var(--primary-2);
  font-weight: 700;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-card {
  padding: 1.4rem;
  min-height: 150px;
}
.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.stat-card span { color: var(--muted); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: 280px 220px;
  gap: 1rem;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, transparent 10%, rgba(5, 10, 20, 0.8) 100%),
    radial-gradient(circle at top left, rgba(127,240,209,0.2), transparent 30%),
    linear-gradient(135deg, #15314d, #0a1c2f 60%, #07111e);
  border: 1px solid var(--line);
  min-height: 220px;
}
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%23b7ebff' stop-opacity='.35'/%3E%3Cstop offset='1' stop-color='%23ffffff' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='800' height='600' fill='url(%23g)'/%3E%3Cpath d='M160 360c0-80 70-150 150-150h160c65 0 120 55 120 120v90H160z' fill='%23ffffff' fill-opacity='.08'/%3E%3Crect x='260' y='245' width='200' height='92' rx='12' fill='%23ffffff' fill-opacity='.18'/%3E%3C/svg%3E") center/cover no-repeat;
  opacity: 0.55;
}
.gallery-card.tall { grid-row: 1 / span 2; }
.gallery-card.wide { grid-column: 2 / span 2; }
.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  z-index: 1;
}
.gallery-overlay span {
  color: var(--primary-2);
  font-size: 0.85rem;
  font-weight: 700;
}
.gallery-overlay h3 { margin: 0.45rem 0 0; font-size: 1.1rem; }

.process-wrap { padding: 2rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.step-card {
  padding: 1.3rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #062033;
  font-weight: 800;
  margin-bottom: 1rem;
}
.review-card footer { color: var(--white); font-weight: 600; margin-top: 1rem; }

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}
.faq-list { display: grid; gap: 1rem; }
.faq-list details { padding: 1.2rem 1.3rem; }
.faq-list summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 1rem 0 0; }

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(78,198,255,0.12), rgba(127,240,209,0.08));
}

.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
}
.footer h3, .footer h4 { color: var(--white); }
.footer p, .footer li, .footer a { color: var(--muted); line-height: 1.8; }
.footer ul { padding: 0; list-style: none; margin: 0; }

.inquiry-page {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
}

.price-list-page {
  min-height: calc(100vh - 84px);
}
.section.price-list-section {
  padding-top: 3rem;
  padding-bottom: 5.5rem;
}
.price-list-intro {
  margin-bottom: 2rem;
}
.price-dph-note {
  margin: -0.5rem 0 1.35rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
  background: rgba(78, 198, 255, 0.1);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}
.price-dph-note strong {
  color: var(--white);
  font-weight: 700;
}
.price-notice {
  padding: 1.15rem 1.35rem;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
}
.price-notice strong { color: var(--white); }
.price-footnote {
  margin: 0 0 2.25rem;
  max-width: 52rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.price-brand-card {
  padding: 0;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.price-brand-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.price-brand-name {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}
.price-brand-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.price-photo-slot {
  position: relative;
  width: min(168px, 42vw);
  min-height: 104px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.5rem;
  overflow: hidden;
}
.price-photo-slot:has(img) {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.12);
}
.price-photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem;
  cursor: zoom-in;
}
.price-photo-slot:has(img) .price-photo-slot-label {
  display: none;
}
.price-photo-slot-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}
.price-photo-slot-label small {
  font-weight: 500;
  opacity: 0.85;
}

.price-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.price-table thead th {
  text-align: left;
  padding: 1rem 1.25rem;
  color: var(--primary-2);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, rgba(78, 198, 255, 0.12), rgba(127, 240, 209, 0.05));
  border-bottom: 1px solid var(--line);
  vertical-align: bottom;
}
.price-table thead th:last-child {
  text-align: right;
}
.th-sub {
  display: block;
  margin-top: 0.35rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 0.72rem;
}
.price-table tbody td {
  padding: 1rem 1.25rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
  line-height: 1.55;
}
.price-table tbody tr:last-child td {
  border-bottom: 0;
}
.price-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.price-btu {
  display: inline-block;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}
.price-table-price {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}
.price-placeholder {
  color: var(--muted);
  font-weight: 600;
  font-style: italic;
}

.price-labor-block {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.price-labor-heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--white);
}
.price-labor-lead {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.price-labor-list {
  list-style: none;
  margin: 0;
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.price-labor-list > li {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.price-labor-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}
.price-labor-title {
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
}
.price-labor-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(78, 198, 255, 0.15);
  color: var(--primary-2);
  border: 1px solid rgba(78, 198, 255, 0.25);
}
.price-labor-desc {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.price-labor-value {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-2);
}
.price-list-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: rgba(2, 8, 18, 0.86);
  backdrop-filter: blur(3px);
  padding: 1rem;
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  background: rgba(6, 14, 26, 0.55);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.info-cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}
.mini-info {
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.mini-info strong { color: var(--white); }
.mini-info span { color: var(--muted); }

.inquiry-form { padding: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row.single { grid-template-columns: 1fr; }
.inquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--white);
  font-weight: 600;
}
.inquiry-form input:not([type="file"]):not([type="checkbox"]),
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
}
.inquiry-form input[type="file"] {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  font: inherit;
  cursor: pointer;
}
.inquiry-form input[type="file"]::file-selector-button {
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #062033;
  font-weight: 700;
  font: inherit;
  cursor: pointer;
}
.file-upload-group {
  display: grid;
  gap: 0.85rem;
}
.file-upload-heading {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder { color: #8fa2b8; }
.inquiry-form input:not([type="checkbox"]):focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(78,198,255,0.6);
  box-shadow: 0 0 0 4px rgba(78,198,255,0.12);
}
.checkbox-row { margin-top: -0.2rem; }
.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muted) !important;
  font-weight: 500 !important;
}
.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
}
.form-success {
  margin: 1rem 0 0;
  color: var(--primary-2) !important;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .faq-grid,
  .inquiry-grid,
  .footer-grid,
  .cards-3,
  .steps-grid,
  .logos-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 220px 220px;
  }
  .gallery-card.tall { grid-row: auto; }
  .gallery-card.wide { grid-column: auto; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(7, 17, 30, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .inline-nav { display: none; }

  .hero-grid,
  .about-grid,
  .faq-grid,
  .inquiry-grid,
  .footer-grid,
  .cards-3,
  .steps-grid,
  .logos-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 240px);
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .section { padding: 4.25rem 0; }
  .hero { padding-top: 3.5rem; }

  .price-labor-list {
    grid-template-columns: 1fr;
  }
  .price-brand-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
