:root {
  --primary: #0d5c63;
  --primary-dark: #094147;
  --accent: #ff6b35;
  --accent-dark: #e55a28;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark: #212529;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo svg {
  width: 45px;
  height: 45px;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: var(--dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

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

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

.hero {
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 15px;
  opacity: 0.95;
}

.hero-audience {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin: 25px 0;
}

.hero-audience h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.hero-audience ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-audience li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.hero-audience svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-height: 400px;
  object-fit: cover;
}

.section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 25px;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.serve-section {
  background: var(--light-gray);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.serve-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.serve-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.serve-card svg {
  width: 60px;
  height: 60px;
  fill: var(--primary);
  margin-bottom: 20px;
}

.serve-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.serve-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.problem-section {
  background: var(--primary);
  color: var(--white);
}

.problem-section .section-title h2 {
  color: var(--white);
}

.problem-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.problem-card svg {
  width: 50px;
  height: 50px;
  fill: var(--accent);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.why-content h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.why-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.why-list {
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--dark);
}

.why-list svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.lead-form-section {
  background: var(--light-gray);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-container h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 10px;
  text-align: center;
}

.form-container > p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 92, 99, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 25px 0;
}

.consent-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.consent-group label {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

.consent-group a {
  color: var(--primary);
  text-decoration: underline;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 20px;
}

.form-disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

.form-container .btn {
  width: 100%;
}

.page-header {
  padding: 140px 20px 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: 60px 20px;
}

.content-section .container {
  max-width: 900px;
}

.content-section h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 40px 0 20px;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 25px 0 15px;
}

.content-section p {
  color: var(--gray);
  margin-bottom: 15px;
}

.content-section ul {
  margin: 15px 0 15px 30px;
  color: var(--gray);
}

.content-section li {
  margin-bottom: 8px;
}

.content-section a {
  color: var(--primary);
  text-decoration: underline;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-card p {
  color: var(--gray);
}

.about-card ul {
  list-style: none;
  margin: 0;
}

.about-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--gray);
}

.about-card svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: var(--light-gray);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
}

.value-card svg {
  width: 40px;
  height: 40px;
  fill: var(--primary);
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid #eee;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.service-detail-content h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-detail-content p {
  color: var(--gray);
  margin-bottom: 15px;
}

.service-detail-content ul {
  list-style: none;
  margin: 20px 0;
}

.service-detail-content li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-detail-content svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--primary);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.hours-card {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
}

.hours-card h4 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.hours-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

.map-container {
  margin-top: 40px;
}

.map-container h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.business-card {
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.business-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.business-card svg {
  width: 28px;
  height: 28px;
  fill: var(--accent);
}

.business-card p {
  color: var(--gray);
  margin-bottom: 15px;
}

.business-card ul {
  list-style: none;
}

.business-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 0.95rem;
}

.business-card li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.legal-content {
  max-width: 850px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 35px 0 15px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 25px 0 12px;
}

.legal-content p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.legal-content ul {
  margin: 15px 0 15px 25px;
  color: var(--gray);
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content .last-updated {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.thank-you {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;
}

.thank-you-content {
  max-width: 500px;
}

.thank-you svg {
  width: 80px;
  height: 80px;
  fill: var(--accent);
  margin-bottom: 30px;
}

.thank-you h1 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.thank-you p {
  color: var(--gray);
  margin-bottom: 30px;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 8px;
}

.footer-brand a {
  color: var(--accent);
  transition: var(--transition);
}

.footer-brand a:hover {
  color: var(--white);
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
}

.footer-copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  font-size: 0.85rem;
  opacity: 0.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--gray);
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 25px;
  border-bottom: 1px solid #eee;
}

.cookie-modal-header h3 {
  font-size: 1.3rem;
  color: var(--primary);
}

.cookie-modal-body {
  padding: 25px;
}

.cookie-category {
  margin-bottom: 25px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cookie-category-header h4 {
  font-size: 1rem;
  color: var(--dark);
}

.cookie-category-header span {
  font-size: 0.8rem;
  color: var(--accent);
}

.cookie-category p {
  font-size: 0.9rem;
  color: var(--gray);
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ddd;
  border-radius: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-toggle.active {
  background: var(--primary);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-audience ul {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 300px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-image {
    order: -1;
  }

  .serve-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  nav li {
    border-bottom: 1px solid #eee;
  }

  nav a {
    display: block;
    padding: 12px 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .section {
    padding: 60px 20px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 30px 20px;
  }

  .page-header {
    padding: 120px 20px 50px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .legal-content {
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1rem;
  }

  .logo-text span {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
