:root {
  --forest: #1F3A24;
  --container: #22422B;
  --moss: #3C7238;
  --leaf: #5AB452;
  --mint: #E5F2E9;
  --paper: #F6FBF7;
  --charcoal: #0F1E14;
  --steel: #6B7570;
  --hazard: #F2C200;
  --ash: #C9D5CC;
  --fd: "Saira Condensed", system-ui, sans-serif;
  --fb: "Inter", system-ui, sans-serif;
}

#nature-export-landing,
#nature-export-landing * {
  box-sizing: border-box;
}

#nature-export-landing {
  font-family: var(--fb);
  background: var(--paper);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin-top: 0;
}

#nature-export-landing html {
  scroll-behavior: smooth;
}

#nature-export-landing .hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}

#nature-export-landing .hero::before {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -8%;
  width: 65%;
  height: 65%;
  background: var(--moss);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: .28;
}

#nature-export-landing .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

#nature-export-landing .hero-left,
#nature-export-landing .hero-right,
#nature-export-landing .comm-header,
#nature-export-landing .comm-grid,
#nature-export-landing .origin-points,
#nature-export-landing .ops-grid,
#nature-export-landing .why-grid,
#nature-export-landing .footer-top {
  position: relative;
  z-index: 2;
}

#nature-export-landing .eyebrow,
#nature-export-landing .sec-label,
#nature-export-landing .cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 20px;
}

#nature-export-landing .eyebrow::before,
#nature-export-landing .sec-label::before,
#nature-export-landing .cta-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--leaf);
  flex-shrink: 0;
}

#nature-export-landing .hero-headline,
#nature-export-landing .sec-title,
#nature-export-landing .cta-title,
#nature-export-landing .origin-islands,
#nature-export-landing .footer-brand {
  font-family: var(--fd);
  font-style: italic;
}

#nature-export-landing .hero-headline {
  font-size: clamp(60px, 7.5vw, 100px);
  line-height: .93;
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

#nature-export-landing .hero-headline .hl {
  color: var(--leaf);
}

#nature-export-landing .hero-headline .indent {
  padding-left: 52px;
  display: block;
}

#nature-export-landing .hero-sub,
#nature-export-landing .sec-sub,
#nature-export-landing .card-desc,
#nature-export-landing .origin-pt-text,
#nature-export-landing .op-desc,
#nature-export-landing .why-desc,
#nature-export-landing .cta-sub,
#nature-export-landing .footer-desc {
  line-height: 1.7;
}

#nature-export-landing .hero-sub {
  font-size: 16px;
  color: var(--ash);
  max-width: 440px;
  margin-bottom: 40px;
}

#nature-export-landing .hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

#nature-export-landing .btn-p,
#nature-export-landing .nav-cta,
#nature-export-landing .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: filter .15s, transform .12s;
}

#nature-export-landing .btn-p,
#nature-export-landing .nav-cta {
  background: var(--leaf);
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
}

#nature-export-landing .btn-p {
  padding: 14px 28px;
}

#nature-export-landing .nav-cta {
  padding: 9px 20px;
}

#nature-export-landing .btn-p:hover,
#nature-export-landing .nav-cta:hover,
#nature-export-landing .cta-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

#nature-export-landing .btn-g {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(246, 251, 247, .25);
  transition: color .15s, border-color .15s;
}

#nature-export-landing .btn-g:hover {
  color: var(--leaf);
  border-color: var(--leaf);
}

#nature-export-landing .hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

#nature-export-landing .hero-logo {
  width: 92%;
  max-width: 500px;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, .55));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1.2deg); }
}

#nature-export-landing .marquee {
  background: var(--charcoal);
  padding: 13px 0;
  overflow: hidden;
  border-top: 1px solid rgba(90, 180, 82, .18);
  border-bottom: 1px solid rgba(90, 180, 82, .18);
}

#nature-export-landing .marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 35s linear infinite;
}

#nature-export-landing .marquee-track span {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: var(--steel);
  white-space: nowrap;
  padding: 0 28px;
  letter-spacing: .5px;
}

#nature-export-landing .marquee-track span.dot {
  color: var(--leaf);
  padding: 0 4px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

#nature-export-landing .stats {
  background: var(--container);
  padding: 60px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-bottom: 3px solid var(--leaf);
}

#nature-export-landing .stat {
  text-align: center;
}

#nature-export-landing .stat-n {
  font-family: var(--fd);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  color: var(--leaf);
  display: block;
}

#nature-export-landing .stat-l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 8px;
  display: block;
  line-height: 1.4;
}

#nature-export-landing .commodities,
#nature-export-landing .origins,
#nature-export-landing .operations,
#nature-export-landing .why,
#nature-export-landing .cta-sec {
  padding: 96px 80px;
}

#nature-export-landing .sec-title {
  font-size: clamp(36px, 4vw, 56px);
  line-height: .98;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 16px;
}

#nature-export-landing .sec-sub {
  font-size: 16px;
  color: var(--steel);
  max-width: 560px;
  margin-bottom: 56px;
}

#nature-export-landing .comm-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 52px;
}

#nature-export-landing .comm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#nature-export-landing .card {
  background: var(--paper);
  border: 1px solid var(--ash);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.25,.46,.45,.94), box-shadow .25s cubic-bezier(.25,.46,.45,.94), border-color .2s;
}

#nature-export-landing .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 30, 20, .14), 0 4px 10px rgba(15, 30, 20, .08);
  border-color: var(--leaf);
}

#nature-export-landing .card-img {
  position: relative;
  overflow: hidden;
  height: 196px;
  background: var(--forest);
}

#nature-export-landing .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  filter: saturate(.8);
}

#nature-export-landing .card:hover .card-img img {
  transform: scale(1.06);
  filter: saturate(1);
}

#nature-export-landing .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(15, 30, 20, .72) 100%);
}

#nature-export-landing .card-img-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .18;
}

#nature-export-landing .card-tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--leaf);
  background: rgba(15, 30, 20, .85);
  padding: 4px 10px;
  border-radius: 3px;
}

#nature-export-landing .card-body {
  padding: 20px 22px 22px;
}

#nature-export-landing .card-name {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}

#nature-export-landing .card-origin {
  font-size: 12px;
  color: var(--steel);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

#nature-export-landing .card-desc {
  font-size: 13px;
  color: var(--steel);
  border-top: 1px solid var(--ash);
  padding-top: 12px;
}

#nature-export-landing .origins {
  background: var(--mint);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#nature-export-landing .origin-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#nature-export-landing .origin-pt {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
}

#nature-export-landing .origin-n {
  font-family: var(--fd);
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  color: var(--leaf);
  line-height: 1;
}

#nature-export-landing .origin-pt-title {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}

#nature-export-landing .origin-pt-text {
  font-size: 14px;
  color: var(--steel);
}

#nature-export-landing .origin-card-wrap {
  perspective: 1200px;
}

#nature-export-landing .origin-card {
  background: var(--forest);
  border-radius: 12px;
  position: relative;
  min-height: 400px;
  box-shadow: 0 24px 48px rgba(15, 30, 20, .2), 0 4px 12px rgba(15, 30, 20, .1);
  transform-style: preserve-3d;
  will-change: transform;
}

#nature-export-landing .origin-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 60%;
  background: var(--moss);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: .4;
}

#nature-export-landing .origin-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: rgba(90, 180, 82, .07);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

#nature-export-landing .origin-card-inner {
  position: absolute;
  inset: 0;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 12px;
  transform: translateZ(50px);
}

#nature-export-landing .origin-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 16px;
}

#nature-export-landing .origin-islands {
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 12px;
}

#nature-export-landing .origin-desc {
  font-size: 13px;
  color: var(--ash);
}

#nature-export-landing .operations {
  background: var(--charcoal);
}

#nature-export-landing .operations .sec-title,
#nature-export-landing .why .sec-title {
  color: var(--paper);
}

#nature-export-landing .operations .sec-sub,
#nature-export-landing .why .sec-sub {
  color: var(--ash);
}

#nature-export-landing .ops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
}

#nature-export-landing .op {
  background: var(--container);
  padding: 32px 26px;
  position: relative;
  transition: background .2s;
}

#nature-export-landing .op:first-child {
  border-radius: 8px 0 0 8px;
}

#nature-export-landing .op:last-child {
  border-radius: 0 8px 8px 0;
}

#nature-export-landing .op:hover {
  background: var(--moss);
}

#nature-export-landing .op-n {
  font-family: var(--fd);
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  color: rgba(90, 180, 82, .2);
  line-height: 1;
  margin-bottom: 16px;
}

#nature-export-landing .op:hover .op-n {
  color: rgba(90, 180, 82, .4);
}

#nature-export-landing .op-title {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 8px;
}

#nature-export-landing .op-desc {
  font-size: 13px;
  color: var(--ash);
}

#nature-export-landing .op-arrow {
  position: absolute;
  top: 50%;
  right: -9px;
  width: 18px;
  height: 2px;
  background: var(--leaf);
  opacity: .35;
  transform: translateY(-50%);
}

#nature-export-landing .op:last-child .op-arrow {
  display: none;
}

#nature-export-landing .why {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

#nature-export-landing .why::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 42%;
  height: 48%;
  background: var(--moss);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: .22;
}

#nature-export-landing .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
  margin-top: 52px;
}

#nature-export-landing .why-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 34px 30px;
  transition: background .2s;
}

#nature-export-landing .why-card:first-child {
  border-radius: 8px 0 0 8px;
}

#nature-export-landing .why-card:last-child {
  border-radius: 0 8px 8px 0;
}

#nature-export-landing .why-card:hover {
  background: rgba(255, 255, 255, .08);
}

#nature-export-landing .why-icon {
  width: 42px;
  height: 42px;
  background: rgba(90, 180, 82, .14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

#nature-export-landing .why-icon svg,
#nature-export-landing .card-img-bg svg {
  stroke: var(--leaf);
}

#nature-export-landing .why-title {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 8px;
}

#nature-export-landing .why-desc {
  font-size: 13px;
  color: var(--ash);
}

#nature-export-landing .cta-sec {
  background: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#nature-export-landing .cta-sec::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(90, 180, 82, .07) 0%, transparent 70%);
  pointer-events: none;
}

#nature-export-landing .cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#nature-export-landing .cta-title {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 900;
  color: var(--forest);
  line-height: .93;
  margin-bottom: 24px;
}

#nature-export-landing .cta-sub {
  font-size: 16px;
  color: var(--steel);
  margin-bottom: 40px;
}

#nature-export-landing .cta-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

#nature-export-landing .cta-input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--ash);
  border-radius: 4px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--charcoal);
  background: #fff;
  outline: none;
}

#nature-export-landing .cta-input:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(90, 180, 82, .14);
}

#nature-export-landing .cta-btn {
  height: 48px;
  padding: 0 26px;
  background: var(--forest);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--fb);
  white-space: nowrap;
}

#nature-export-landing .cta-note {
  font-size: 12px;
  color: var(--steel);
  margin-top: 16px;
}

#nature-export-landing .cta-note a {
  color: var(--moss);
  text-decoration: none;
}

#nature-export-landing .cta-note a:hover {
  text-decoration: underline;
}

#nature-export-landing .landing-footer {
  background: var(--charcoal);
  padding: 56px 80px 40px;
}

#nature-export-landing .footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 32px;
}

#nature-export-landing .footer-brand {
  font-size: 30px;
  font-weight: 900;
  color: var(--paper);
  line-height: 1;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

#nature-export-landing .footer-desc {
  font-size: 13px;
  color: var(--steel);
  max-width: 220px;
}

#nature-export-landing .footer-brand-mark {
  display: block;
  width: 250px;
  max-width: 100%;
  height: auto;
  margin-bottom: 12px;
}

#nature-export-landing .footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 18px 0 22px;
}

#nature-export-landing .social-block {
  margin-top: 10px;
}

#nature-export-landing .social-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 16px;
}

#nature-export-landing .social-list {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
}

#nature-export-landing .social-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--paper);
}

#nature-export-landing .social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .22);
  transition: transform .15s ease, filter .15s ease;
}

#nature-export-landing .social-item:hover .social-icon {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

#nature-export-landing .social-label {
  font-size: 11px;
  line-height: 1.2;
  color: var(--paper);
  text-align: center;
}

#nature-export-landing .social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

#nature-export-landing .social-icon svg path,
#nature-export-landing .social-icon svg circle,
#nature-export-landing .social-icon svg rect,
#nature-export-landing .social-icon svg line,
#nature-export-landing .social-icon svg polyline {
  stroke: #fff;
}

#nature-export-landing .social-icon.whatsapp {
  background: linear-gradient(145deg, #40e36a 0%, #20c95a 100%);
}

#nature-export-landing .social-icon.instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 10%, #fd5949 30%, #d6249f 60%, #285AEB 100%);
}

#nature-export-landing .social-icon.facebook {
  background: linear-gradient(145deg, #4e8ff7 0%, #1877f2 100%);
}

#nature-export-landing .social-icon.wechat {
  background: linear-gradient(145deg, #55d24d 0%, #1dbf5f 100%);
}

#nature-export-landing .social-icon.email {
  background: linear-gradient(145deg, #51d766 0%, #29b85b 100%);
}

#nature-export-landing .footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 16px;
}

#nature-export-landing .footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

#nature-export-landing .footer-links li {
  margin-bottom: 9px;
}

#nature-export-landing .footer-links a {
  font-size: 13px;
  color: var(--steel);
  text-decoration: none;
}

#nature-export-landing .footer-links a:hover {
  color: var(--ash);
}

#nature-export-landing .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#nature-export-landing .footer-copy {
  font-size: 12px;
  color: var(--steel);
  margin-bottom: 0;
}

#nature-export-landing .footer-tag {
  font-family: var(--fd);
  font-size: 14px;
  font-style: italic;
  color: var(--leaf);
  margin-bottom: 0;
}

#nature-export-landing .rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

#nature-export-landing .rv.in {
  opacity: 1;
  transform: translateY(0);
}

#nature-export-landing .d1 { transition-delay: .1s; }
#nature-export-landing .d2 { transition-delay: .2s; }
#nature-export-landing .d3 { transition-delay: .3s; }

@media (max-width: 960px) {
  #nature-export-landing .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 64px;
  }

  #nature-export-landing .hero-right {
    display: none;
  }

  #nature-export-landing .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 48px 32px;
  }

  #nature-export-landing .commodities,
  #nature-export-landing .origins,
  #nature-export-landing .operations,
  #nature-export-landing .why,
  #nature-export-landing .cta-sec {
    padding: 64px 32px;
  }

  #nature-export-landing .comm-header,
  #nature-export-landing .origins {
    grid-template-columns: 1fr;
  }

  #nature-export-landing .comm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #nature-export-landing .ops-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #nature-export-landing .why-grid {
    grid-template-columns: 1fr;
  }

  #nature-export-landing .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  #nature-export-landing .cta-form {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  #nature-export-landing .comm-grid,
  #nature-export-landing .ops-grid,
  #nature-export-landing .footer-top,
  #nature-export-landing .stats {
    grid-template-columns: 1fr;
  }

  #nature-export-landing .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  #nature-export-landing .social-list {
    gap: 16px;
  }

  #nature-export-landing .social-icon {
    width: 52px;
    height: 52px;
  }
}