@font-face {
      font-family: 'Space';
      src: url('space.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
    }
    @font-face {
      font-family: 'Geo';
      src: url('geo.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
    }

    :root {
      --bg-dark: #010101;
      --surface: #111111;
      --surface-strong: #181818;
      --text-light: #f5f5f5;
      --text-muted: #a6a6a6;
      --primary: #ffffff;
      --accent: #38bdf8;
      --accent-soft: rgba(56, 189, 248, 0.16);
      --accent-strong: rgba(56, 189, 248, 0.5);
    }

    html, body {
      height: 100%;
    }

    body {
      margin: 0;
      padding: 0;
      background-color: var(--bg-dark);
      color: var(--text-light);
      font-family: 'Space', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at 14% 22%, rgba(56,189,248,0.14), transparent 58%),
        radial-gradient(circle at 82% 18%, rgba(255,255,255,0.08), transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(37,99,235,0.08), transparent 68%),
        linear-gradient(160deg, #050505 0%, #020202 52%, #040404 100%);
      pointer-events: none;
      z-index: -2;
    }

    * {
      box-sizing: border-box;
    }

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

    .main-content {
      width: 100%;
      padding: 5.5rem min(6vw, 1.5rem) 4rem;
    }

    @media (min-width: 768px) {
      .main-content {
        padding: 6.5rem min(7vw, 2.5rem) 5rem;
      }
    }

    .primary-font {
      font-family: 'Geo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    a {
      color: var(--primary);
    }

    a:hover {
      color: var(--accent);
    }

    .hero {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      max-width: 1100px;
      margin: 0 auto 4rem;
      padding: 2.5rem;
      border-radius: 24px;
      background: linear-gradient(140deg, rgba(24,24,24,0.92), rgba(10,10,10,0.75));
      border: 1px solid rgba(255,255,255,0.04);
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(56,189,248,0.12), transparent 45%);
      pointer-events: none;
    }

    @media (min-width: 960px) {
      .hero {
        flex-direction: row;
        align-items: center;
        padding: 3.5rem 4rem;
      }
    }

    .hero-text {
      max-width: 620px;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
      color: var(--text-muted);
    }

    .tagline {
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      color: var(--accent);
      margin-bottom: 1.25rem;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 4vw, 3.6rem);
      line-height: 1.1;
      font-weight: 800;
      margin: 0 0 1.5rem 0;
    }

    .hero-highlight {
      color: var(--accent);
    }

    .hero p {
      color: var(--text-muted);
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 1.75rem;
    }

    .buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .button-primary {
      background: linear-gradient(135deg, rgba(56,189,248,0.95), rgba(37,99,235,0.9));
      color: rgb(7, 10, 20);
      padding: 0.75rem 1.6rem;
      border-radius: 999px;
      font-weight: 700;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 10px 30px rgba(56,189,248,0.25);
    }

    .button-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(56,189,248,0.35);
    }

    .button-secondary {
      color: var(--text-light);
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.75rem 1rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.04);
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .button-secondary:hover {
      color: var(--primary);
      border-color: rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.06);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
      list-style: none;
      padding: 0;
      margin: 0;
      color: var(--text-muted);
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .hero-metrics li {
      padding: 1rem 1.2rem;
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 16px;
      background: rgba(255,255,255,0.02);
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .hero-metrics span {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--primary);
    }

    .hero-image {
      display: none;
      align-items: center;
      justify-content: center;
      max-width: 260px;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero-emblem-img {
      width: 110px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 8px 22px rgba(56,189,248,0.28));
    }

    .hero-visual {
      max-width: 260px;
      border-radius: 16px;
      box-shadow: 0 14px 40px rgba(0,0,0,0.45);
    }

    @media (min-width: 960px) {
      .hero-image {
        display: flex;
      }
    }

    section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 4rem clamp(1rem, 5vw, 2.5rem) 2.5rem clamp(1rem, 5vw, 2.5rem);
      position: relative;
      z-index: 1;
    }

    .section-header {
      max-width: 720px;
      margin-bottom: 2.5rem;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1.5rem;
      letter-spacing: 1px;
      font-family: 'Space', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .section-eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
    }

    .section-lede {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0;
    }

    .align-left {
      text-align: left;
    }

    .about-content, .projects-list {
      color: var(--text-muted);
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .progress-controls {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin: 2.5rem 0 3rem;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .progress-controls-label {
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 0.7rem;
      color: rgba(255,255,255,0.6);
    }

    .progress-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
    }

    .progress-toggle-btn {
      border: none;
      background: transparent;
      color: var(--text-muted);
      font-size: 0.9rem;
      padding: 0.45rem 1.1rem;
      border-radius: 999px;
      font-family: inherit;
      cursor: pointer;
      transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .progress-toggle-btn:not(.is-active):hover {
      color: var(--primary);
    }

    .progress-toggle-btn:focus-visible {
      outline: 2px solid rgba(56,189,248,0.6);
      outline-offset: 2px;
    }

    .progress-toggle-btn.is-active {
      background: linear-gradient(135deg, rgba(56,189,248,0.92), rgba(37,99,235,0.88));
      color: rgb(12, 18, 32);
      box-shadow: 0 10px 24px rgba(56,189,248,0.25);
    }

    .progress-index {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.58);
      margin-bottom: 0.4rem;
    }

    .progress-timeline {
      display: grid;
      gap: 4rem;
    }

    .progress-entry {
      display: grid;
      gap: 1.5rem;
    }

    @media (max-width: 600px) {
      .progress-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
      }

      .progress-toggle {
        width: 100%;
        justify-content: center;
      }

      .progress-toggle-btn {
        flex: 1;
        text-align: center;
      }
    }

    .section-contrast {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.04);
      border-radius: 24px;
      padding: 3.5rem 3rem;
      margin-top: 3.5rem;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.015);
    }

    @media (max-width: 720px) {
      .section-contrast {
        padding: 2.5rem 1.75rem;
      }
    }

    .focus-grid {
      display: grid;
      gap: 1.8rem;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .focus-card {
      background: var(--surface);
      border-radius: 20px;
      padding: 2rem;
      border: 1px solid rgba(255,255,255,0.05);
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .focus-card::after {
      content: "";
      position: absolute;
      inset: -40% -40% auto auto;
      width: 160px;
      height: 160px;
      background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .focus-card:hover {
      transform: translateY(-4px);
      border-color: rgba(56,189,248,0.4);
    }

    .focus-card:hover::after {
      opacity: 1;
    }

    .focus-card h3 {
      margin: 0 0 1rem 0;
      font-size: 1.35rem;
      color: var(--primary);
    }

    .focus-card p {
      margin: 0 0 1.5rem 0;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .card-index {
      display: inline-block;
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 1.25rem;
    }

    .card-tag {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }

    .signals-rail {
      border-left: 1px solid rgba(255,255,255,0.08);
      margin-left: 1rem;
      padding-left: 2rem;
      display: grid;
      gap: 2.5rem;
    }

    @media (max-width: 640px) {
      .signals-rail {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
      }
    }

    .signal-card {
      position: relative;
      padding-left: 0.5rem;
    }

    .signal-card::before {
      content: "";
      position: absolute;
      left: -2.05rem;
      top: 0.35rem;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 20px rgba(56,189,248,0.5);
    }

    @media (max-width: 640px) {
      .signal-card::before {
        display: none;
      }
    }

    .signal-card time {
      display: block;
      font-size: 0.75rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 0.6rem;
    }

    .signal-card h3 {
      margin: 0 0 0.75rem 0;
      color: var(--primary);
      font-size: 1.3rem;
    }

    .signal-card p {
      margin: 0 0 0.85rem 0;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .text-link {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: opacity 0.2s ease;
    }

    .text-link:hover {
      opacity: 0.75;
    }

    .split-section {
      background: rgba(18,18,18,0.85);
      border: 1px solid rgba(255,255,255,0.04);
      border-radius: 24px;
      padding: 3rem;
      margin-top: 3.5rem;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.015);
    }

    .split-section .section-header {
      margin-bottom: 2rem;
    }

    .split-body {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    @media (max-width: 820px) {
      .split-body {
        grid-template-columns: 1fr;
      }
    }

    .callout {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.03);
      border-radius: 18px;
      padding: 1.5rem;
      color: var(--primary);
      line-height: 1.6;
    }

    .principles-grid {
      display: grid;
      gap: 1.2rem;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .principle {
      padding: 1.25rem 1.5rem;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.05);
      background: rgba(255,255,255,0.02);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.85rem;
      color: var(--primary);
    }

    .vision-section {
      margin-top: 3.5rem;
      padding: 3rem;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(15,15,15,0.9), rgba(24,24,24,0.8));
      border: 1px solid rgba(255,255,255,0.04);
    }

    .vision-body {
      display: grid;
      gap: 2.5rem;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      align-items: start;
    }

    @media (max-width: 860px) {
      .vision-body {
        grid-template-columns: 1fr;
      }
    }

    .vision-body p {
      color: var(--text-muted);
      margin: 0;
      line-height: 1.7;
    }

    .quote-block {
      position: relative;
      border-radius: 20px;
      border: 1px solid rgba(56,189,248,0.25);
      background: rgba(56,189,248,0.08);
      padding: 2.5rem 2rem 2rem;
      color: var(--primary);
      overflow: hidden;
    }

    .quote-block p {
      margin: 0;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .quote-mark {
      position: absolute;
      top: -10px;
      left: 20px;
      font-size: 6rem;
      color: rgba(56,189,248,0.25);
    }

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

    @media (min-width: 700px) {
      .projects-list {
        grid-template-columns: 1fr 1fr;
      }
    }

    .project-card {
      background: var(--surface);
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      border: 1px solid #232323;
      transition: border 0.2s, transform 0.2s ease;
    }

    .project-card:hover {
      border: 1px solid var(--accent);
      transform: translateY(-2px);
    }

    .project-title {
      color: var(--text-light);
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .project-desc {
      color: var(--text-muted);
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .project-link {
      color: var(--accent);
      text-decoration: none;
      font-size: 0.98rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .project-link:hover {
      color: #60a5fa;
    }

    .project-thumb {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
      background: #232323;
      transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
      display: block;
    }

    .project-thumb-compact {
      max-width: 320px;
      width: 100%;
    }

    .project-card:hover .project-thumb {
      transform: scale(1.03);
      box-shadow: 0 4px 16px rgba(59,130,246,0.10), 0 2px 8px rgba(0,0,0,0.13);
    }

    /* Responsive height for small screens */
    @media (max-width: 600px) {
      .project-thumb {
        height: 100px;
      }
    }

    /* Gallery: start aligned, scroll left out of bounds */
.gallery-outer {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 2rem auto;
  overflow-x: auto;
  position: relative;
  padding-bottom: 0.5rem;
  touch-action: pan-x; /* iOS touch support */
  /* Prevent accidental vertical scroll bounce on iOS */
  overscroll-behavior-x: contain;
  /* Fade edges for all browsers */
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 2rem, black 98%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 2rem, black 98%, transparent 100%);
}

.project-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  min-width: 100%;
  padding-left: 0;
  padding-right: 2vw;
}

.project-gallery .project-thumb {
  width: 320px;
  min-width: 320px;
  height: 200px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  background: #232323;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
  display: block;
}

/* Responsive: smaller images on small screens */
@media (max-width: 600px) {
  .gallery-outer {
    max-width: 100vw;
  }
  .project-gallery .project-thumb {
    width: 200px;
    min-width: 200px;
    height: 120px;
  }
}


    .nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0.75rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: var(--text-light);
    }

    .brand-name {
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-emblem {
      width: 32px;
      height: 32px;
      display: block;
    }

    .nav-links {
      display: inline-flex;
      align-items: center;
      gap: 1.75rem;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s ease;
    }

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

    .nav-cta {
      padding: 0.4rem 0.95rem;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 999px;
      color: var(--primary) !important;
      font-weight: 600;
      transition: background 0.25s ease, border-color 0.25s ease;
    }

    .nav-cta:hover {
      background: var(--accent-soft);
      border-color: var(--accent);
    }

    @media (max-width: 640px) {
      .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
      }

      .nav-cta {
        margin-left: auto;
      }
    }

    footer {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.9rem;
      padding: 3rem 1.5rem;
      border-top: 1px solid #222;
      margin-top: 5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      flex-shrink: 0;
    }

    .footer-logo {
      width: 28vw;
      max-width: 180px;
      object-fit: contain;
      display: block;
      margin-bottom: 0.5rem;
      opacity: 0.85;
    }

    .section-divider {
      width: 90%;
      max-width: 900px;
      margin: 0 auto 0 auto;
      border: none;
      border-top: 1.5px solid #363636;
      background: none;
      height: 0;
      opacity: 0.7;
    }

    /* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initial state for animation */
.animated {
  opacity: 0;
}

/* Animation triggers */
.animate-fadeInUp {
  animation: fadeInUp 0.9s cubic-bezier(.4,0,.2,1) forwards;
}
.animate-fadeIn {
  animation: fadeIn 1.1s cubic-bezier(.4,0,.2,1) forwards;
}
.animate-fadeInLeft {
  animation: fadeInLeft 0.9s cubic-bezier(.4,0,.2,1) forwards;
}
.animate-fadeInRight {
  animation: fadeInRight 0.9s cubic-bezier(.4,0,.2,1) forwards;
}

/* Main content should grow to fill space */
.main-content {
  flex: 1 0 auto;
}

.dev-banner {
  width: 100vw;
  background: linear-gradient(90deg, #002766 0%,#000000 30%, #000000 70%, #002766 100%);
  color: #fff;
  font-family: 'Geo', 'Space', 'Segoe UI', sans-serif;
  font-size: 1rem;
  padding: 0.5rem 0;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 200;
  border-top: 1px solid #222;
}

    @media (max-width: 600px) {
      section {
        padding: 2.5rem clamp(1rem, 7vw, 1.25rem) 1.5rem clamp(1rem, 7vw, 1.25rem);
      }
  .dev-banner {
    font-size: 0.95rem;
    padding: 0.4rem 0;
  }
  .section-divider {
      width: 95%;
    }
  .image-with-caption .inline-image {
    max-height: 60vh;
  }
}
.no-bullet {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.supporterlogo {
  width: min(80vw, 300px);
  height: auto;
}

.lotus-logo {
  height: 10rem;
  width: auto;
}


.image-with-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2.5rem 0 2.5rem 0;
}

.image-with-caption .inline-image {
  width: 100%;
  max-width: 900px;
  max-height: 70vh;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 0.75rem;
  background: #181818;
}

.image-with-caption .caption {
  color: var(--text-muted);
  font-size: 1rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
  max-width: 100%;
  padding: 0 1rem;
}

.holiday-banner {
  background: #080808;
  color: #bbb;
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin: 2rem 0 2.5rem 0;
  font-size: 1.08rem;
  font-family: 'Space', 'Segoe UI', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: left;
}