﻿:root {
  --accent: #14B8A6;
  --accent-dark: #0D9488;
  --accent-light: #99F6E4;
  --dark: #0F172A;
  --mid: #334155;
  --text: #1E293B;
  --muted: #64748B;
  --border: #E2E8F0;
  --surface: #F8FAFC;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1E293B;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  color: #0F172A;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: #14B8A6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: #FFFFFF;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: #334155;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #14B8A6;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: #14B8A6;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #0D9488;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.35);
}

.btn-outline {
  background: transparent;
  color: #334155;
  border: 1.5px solid #E2E8F0;
}

.btn-outline:hover {
  border-color: #14B8A6;
  color: #14B8A6;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-white {
  background: #FFFFFF;
  color: #14B8A6;
}

.btn-white:hover {
  background: #F0FDFA;
}

.hero {
  padding: 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.72) 100%);
  padding: 140px 0 100px;
}

.hero h1 {
  color: #F8FAFC;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero h1 span {
  color: #5EEAD4;
}

.hero .hero-sub {
  color: #CBD5E1;
}

.hero .hero-note {
  color: #94A3B8;
}

.hero .hero-badge {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.4);
  color: #5EEAD4;
}

.hero .btn-outline {
  color: #F8FAFC;
  border-color: rgba(255,255,255,0.4);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  max-width: 720px;
  margin: 0 auto 20px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 20px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 13px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: #F8FAFC;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #14B8A6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 18px;
  color: #64748B;
  line-height: 1.6;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.25s;
}

.feature-card:hover {
  border-color: #14B8A6;
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #CCFBF1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #14B8A6;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.65;
}

.logo-wall {
  padding: 64px 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  background: #FFFFFF;
}

.logo-wall-label {
  text-align: center;
  font-size: 14px;
  color: #94A3B8;
  font-weight: 500;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 17px;
  font-weight: 700;
  color: #CBD5E1;
  letter-spacing: -0.3px;
}

.stats-strip {
  background: #0F172A;
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 0 24px;
  border-right: 1px solid #1E293B;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: #14B8A6;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 15px;
  color: #94A3B8;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px;
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #CCFBF1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #0D9488;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
}

.testimonial-role {
  font-size: 13px;
  color: #94A3B8;
}

.cta-section {
  background: linear-gradient(135deg, #14B8A6 0%, #0D9488 50%, #0F766E 100%);
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 44px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #0F172A;
  padding: 64px 0 32px;
  color: #94A3B8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: #F8FAFC;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #64748B;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #14B8A6;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: #475569;
}

.footer-contact-info {
  font-size: 14px;
  color: #64748B;
  margin-top: 4px;
}

.page-header {
  padding: 120px 0 64px;
  background: linear-gradient(180deg, #F0FDFA 0%, #FFFFFF 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: 20px;
  color: #64748B;
  max-width: 560px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: #14B8A6;
  box-shadow: 0 8px 40px rgba(20, 184, 166, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #14B8A6;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
}

.price-amount {
  font-size: 56px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -2px;
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: #94A3B8;
}

.pricing-desc {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 28px;
  min-height: 40px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  margin-bottom: 12px;
}

.pricing-features li .check {
  color: #14B8A6;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  margin-top: auto;
}

.pricing-cta .btn {
  width: 100%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid #E2E8F0;
}
  background: #E2E8F0;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.team-title {
  font-size: 14px;
  color: #14B8A6;
  font-weight: 500;
  margin-bottom: 8px;
}

.team-bio {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 17px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}

.values-list {
  list-style: none;
  margin-top: 28px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.values-list li .icon {
  width: 28px;
  height: 28px;
  background: #CCFBF1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0D9488;
  flex-shrink: 0;
  margin-top: 2px;
}

.values-list li span {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-form-wrap h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 16px;
  color: #64748B;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-size: 15px;
  color: #0F172A;
  background: #FFFFFF;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #14B8A6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.contact-info > p {
  font-size: 15px;
  color: #64748B;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #CCFBF1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #14B8A6;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 14px;
  color: #64748B;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
}

.blog-card:hover {
  border-color: #14B8A6;
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.1);
  transform: translateY(-2px);
}

.blog-thumb {
  width: 100%;
  height: 200px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  font-size: 13px;
}

.blog-content {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #14B8A6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 13px;
  color: #94A3B8;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.legal-content h1 {
  font-size: 40px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin: 40px 0 14px;
}

.legal-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 12px 0 16px 24px;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0F172A;
  border-top: 1px solid #1E293B;
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: #14B8A6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  padding: 8px 18px;
  background: #14B8A6;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-cookie-decline {
  padding: 8px 18px;
  background: transparent;
  color: #64748B;
  border: 1px solid #334155;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 32px;
}

.breadcrumb a {
  color: #14B8A6;
}

.breadcrumb span {
  color: #CBD5E1;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #334155;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 38px; }
  .section-header h2 { font-size: 30px; }
  .feature-cards { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .mobile-menu-toggle { display: block; }
  .logo-list { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* === Card Uniformity Fix (auto-generated) === */

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card {
  height: 100%;
}

.team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-content > a:last-child,
.blog-content > p:last-child + a {
  margin-top: auto;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pricing-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === Read More Pin Fix (auto-generated) === */

.blog-content > p {
  flex: 1;
}

.blog-content > a:last-child,
.blog-content > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.read-more,
a[class*="read-more"],
a[class*="readmore"] {
  margin-top: auto;
  padding-top: 12px;
}

/* === Last-Child Pin Fix (auto-generated) === */

.blog-card > :last-child {
  margin-top: auto;
}

.blog-content > :last-child {
  margin-top: auto;
}

a.read-more,
[class*="read-more"],
[class*="blog-read-more"] {
  margin-top: auto;
}

/* === Blog Article Width Fix === */
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow img {
  max-width: 100%;
  height: auto;
}

/* Card title link styling */
.blog-card h3 a, .blog-card h4 a, .blog-card h5 a,
.news-card h3 a, .news-card h4 a, .news-card h5 a,
.insight-card h3 a, .insight-card h4 a, .insight-card h5 a,
[class*="-card"] h3 a, [class*="-card"] h4 a, [class*="-card"] h5 a {
  color: inherit;
  text-decoration: none;
}
[class*="-card"] h3 a:hover, [class*="-card"] h4 a:hover, [class*="-card"] h5 a:hover {
  text-decoration: underline;
}

/* Form placeholder visibility */
input::placeholder, textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #6b7280;
  opacity: 1;
}
input, textarea, select {
  color: #111827;
  border: 1px solid #d1d5db;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Universal card equal height */
[class$="-card"], [class*="-card "] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
