/* ==========================================================================
   Misk Healthcare Private Limited — shared stylesheet
   ========================================================================== */

:root {
  --forest: #0b5d46;
  --forest-deep: #06392a;
  --gold: #e2a53a;
  --gold-dark: #c78a22;
  --cream: #faf7ef;
  --card: #ffffff;
  --text: #23281f;
  --text-light: #6b7166;
  --line: #e7e1d3;
  --max-width: 1200px;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: "Manrope", "Inter", sans-serif;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo svg {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--forest-deep);
}

.logo-text small {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  color: var(--gold-dark);
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav a {
  position: relative;
  display: inline-block;
  color: var(--forest-deep);
  font-size: 14.5px;
  font-weight: 600;
  padding: 6px 2px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transition: right 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.main-nav a.active {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--forest-deep);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle .icon {
  width: 26px;
  height: 26px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav ul {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    flex-direction: column;
    background: var(--card);
    padding: 16px;
    border-radius: var(--radius);
    gap: 14px;
    display: none;
    box-shadow: 0 14px 30px rgba(6, 57, 42, 0.14);
    border: 1px solid var(--line);
  }

  .main-nav ul.open {
    display: flex;
  }

  .main-nav a {
    display: block;
    padding: 6px 4px;
  }
}

/* ==========================================================================
   Hero sections (illustrative, no photography)
   ========================================================================== */

.hero {
  position: relative;
  background: var(--forest);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 360px at 88% -10%, rgba(226, 165, 58, 0.35), transparent 60%),
    radial-gradient(500px 340px at -10% 110%, rgba(255, 255, 255, 0.08), transparent 60%);
}

.hero-home {
  padding: 70px 0 90px;
}

.hero-home .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--forest-deep);
  background: var(--gold);
  padding: 7px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.hero-home h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.22;
  color: #fff;
  margin-bottom: 18px;
}

.hero-home .hero-sub {
  font-size: 16px;
  color: #d9e6de;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stats div {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.hero-stats strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.hero-stats span {
  font-size: 12.5px;
  color: #bcd0c4;
  letter-spacing: 0.3px;
}

.hero-art {
  position: relative;
  z-index: 2;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art svg {
  width: 62%;
  height: 62%;
  color: var(--gold);
}

.hero-page {
  min-height: 260px;
  padding: 56px 0 64px;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-page .container {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-page .hero-eyebrow {
  margin-bottom: 16px;
}

.hero-page h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-page p {
  color: #d9e6de;
  font-size: 15.5px;
}

@media (max-width: 900px) {
  .hero-home .container {
    grid-template-columns: 1fr;
  }

  .hero-art {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-home h1 {
    font-size: 30px;
  }

  .hero-page h1 {
    font-size: 26px;
  }
}

/* ==========================================================================
   Category tiles (Home page)
   ========================================================================== */

.category-section {
  padding: 84px 0;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-intro .kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.section-intro h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--forest-deep);
}

.section-intro p {
  color: var(--text-light);
  font-size: 15px;
}

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

.category-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(6, 57, 42, 0.1);
  border-color: var(--gold);
}

.category-card .tile-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.category-card .tile-icon .icon {
  width: 24px;
  height: 24px;
}

.category-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 13.5px;
  color: var(--text-light);
}

@media (max-width: 980px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Photo gallery + lightbox
   ========================================================================== */

.image-grid-section {
  padding: 80px 0;
  background: var(--card);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.image-grid figure {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  margin: 0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-grid figure:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

@media (max-width: 860px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .image-grid-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .image-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .image-grid figure {
    aspect-ratio: 4 / 3;
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--forest-deep);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
}

.lightbox-image-wrap {
  position: relative;
  display: inline-flex;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.lightbox.is-zoomed .lightbox-content img {
  transform: scale(1.6);
  cursor: zoom-out;
}

.lightbox-caption {
  margin-top: 18px;
  text-align: center;
  color: #cfe0d6;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.lightbox-counter {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.lightbox-tools {
  position: absolute;
  top: 16px;
  right: 24px;
  display: flex;
  gap: 12px;
  z-index: 2;
}

.lightbox-tools button,
.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-tools button {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.lightbox-tools button:hover {
  background: var(--gold);
  color: var(--forest-deep);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--forest-deep);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

@media (max-width: 640px) {
  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }

  .lightbox-tools {
    right: 8px;
    gap: 8px;
  }

  .lightbox-tools button {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .lightbox-counter {
    top: 12px;
    left: 12px;
  }
}

/* ==========================================================================
   Who We Are / Why Choose Us
   ========================================================================== */

.who-we-are {
  position: relative;
  background: var(--forest-deep);
  padding: 90px 0;
}

.who-we-are .container {
  position: relative;
  max-width: 780px;
  border-left: 3px solid var(--gold);
  padding-left: 30px;
}

.who-we-are h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.who-we-are p {
  color: #cfe0d6;
  font-size: 16px;
}

.who-we-are strong {
  color: #fff;
}

.why-us {
  background: var(--card);
  padding: 90px 0;
}

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

.why-grid li {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: left;
}

.why-grid .why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-grid .why-icon .icon {
  width: 20px;
  height: 20px;
}

.why-grid strong {
  display: block;
  font-size: 15px;
  color: var(--forest-deep);
  margin-bottom: 6px;
}

.why-grid span {
  font-size: 13.5px;
  color: var(--text-light);
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Generic section spacing
   ========================================================================== */

.section {
  padding: 70px 0;
}

/* ==========================================================================
   Management page
   ========================================================================== */

.management-bio {
  background: var(--card);
  padding: 70px 0;
}

.directors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.director-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.director-card .avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}

.director-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 4px;
}

.director-card .role {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 14px;
}

.director-card p {
  font-size: 14.5px;
  color: var(--text-light);
}

.reg-box {
  background: var(--forest-deep);
  color: #dcebe3;
  padding: 30px 34px;
  border-radius: var(--radius);
}

.reg-box h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.reg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
  font-size: 14.5px;
}

.reg-grid dt {
  color: #93b3a2;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.reg-grid dd {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 800px) {
  .directors-grid,
  .reg-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Products page
   ========================================================================== */

.product-category + .product-category {
  margin-top: 70px;
}

.product-category-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.product-category-head .num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-category-head h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--forest-deep);
}

.product-category-head p {
  font-size: 14px;
  color: var(--text-light);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(6, 57, 42, 0.1);
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 18px;
}

.product-icon .icon {
  width: 22px;
  height: 22px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--forest-deep);
}

.product-card p {
  font-size: 14px;
  color: var(--text-light);
}

.product-card strong {
  color: var(--forest-deep);
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   About Us page
   ========================================================================== */

.our-story {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
}

.our-story h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--forest-deep);
}

.our-story .story-text p {
  margin-bottom: 18px;
  color: var(--text-light);
}

.our-story .story-text strong {
  color: var(--forest-deep);
}

.milestone-strip {
  background: var(--forest);
  padding: 50px 0;
}

.milestone-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.milestone-strip strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
}

.milestone-strip span {
  font-size: 13px;
  color: #d9e6de;
}

@media (max-width: 800px) {
  .our-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-info {
  background: var(--card);
  padding: 70px 0;
}

.contact-info h2 {
  color: var(--forest-deep);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 28px;
}

.contact-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--forest-deep);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-info .office {
  color: var(--text-light);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.credential-badges span {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--forest-deep);
  background: #eef4ee;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 8px;
}

.contact-grid {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 70px;
  padding: 0 24px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.map-wrap {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.map-link {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--forest-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.contact-form {
  padding: 46px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--forest);
  border-radius: var(--radius);
  color: #fff;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-form > p {
  color: #d9e6de;
  margin-bottom: 24px;
}

.contact-form .email-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #d9e6de;
  margin-bottom: 26px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--forest-deep);
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.whatsapp-btn:hover {
  background: #f0ba5f;
  transform: translateY(-2px);
}

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.icon-sm {
  width: 13px;
  height: 13px;
}

.map-link .icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 860px) {
  .contact-grid,
  .offices-grid {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .contact-form {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--forest-deep);
  color: #b7c9bf;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-brand .logo-text strong {
  color: #fff;
}

.footer-brand .logo-text small {
  color: var(--gold);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: #92a89b;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0d4634;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  transition: background 0.2s ease;
}

.socials a:hover {
  background: var(--gold);
  color: var(--forest-deep);
}

.site-footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.site-footer .footer-col p,
.site-footer .footer-col li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #9db2a6;
}

.site-footer .footer-col strong {
  color: #fff;
}

.site-footer .footer-col a:hover {
  color: var(--gold);
}

.opening-hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.opening-hours .icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #0d4634;
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #7c9184;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
