/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #111111;
  --dark:   #1a1a1a;
  --dark2:  #222222;
  --red:    #cc2200;
  --red2:   #e63300;
  --gold:   #c8a200;
  --gold2:  #f0c800;
  --white:  #f5f5f5;
  --grey:   #b0b8c1;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gold { color: var(--gold2); }

.section-sub {
  text-align: center;
  color: #aaa;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff;
  border-color: var(--red2);
}
.btn-outline {
  background: transparent;
  color: var(--gold2);
  border-color: var(--gold2);
}
.btn-outline:hover { background: var(--gold2); color: var(--black); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #1ebe5d;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  padding: 0.85rem 2.2rem;
}
.btn-whatsapp svg { width: 22px; height: 22px; fill: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; }

/* ===== HEADER ===== */
header {
  background: rgba(17,17,17,0.97);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-wrap { display: flex; align-items: center; gap: 0.8rem; }

/* Header logo badge */
.logo-sign {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #1a1a1a;
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 5px 7px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.ls-star { color: var(--red); font-size: 0.85rem; }
.ls-text { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.ls-attie { color: var(--gold2); font-size: 0.78rem; font-weight: 900; font-style: italic; }
.ls-gas   { color: var(--white); font-size: 0.62rem; font-weight: 800; letter-spacing: 1px; }

.logo-icon svg { width: 44px; height: 54px; }

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

.brand-attie {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold2);
  font-style: italic;
  letter-spacing: 1px;
}
.brand-gas {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.brand-lpg {
  font-size: 0.72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
nav a:hover { color: var(--gold2); }

.nav-call {
  background: var(--red);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem !important;
}
.nav-call:hover { background: var(--red2); color: #fff !important; }

/* ===== BURGER BUTTON ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* Animate to X when open */
.burger-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
  .burger { display: flex; }

  #mainNav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 75vw;
    max-width: 300px;
    background: #141414;
    border-left: 2px solid var(--red);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 150;
    box-shadow: -8px 0 30px rgba(0,0,0,0.6);
  }

  #mainNav.nav-open { transform: translateX(0); }

  #mainNav a {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #2a2a2a;
    color: var(--white);
  }
  #mainNav a:last-child { border-bottom: none; margin-top: 1rem; }
  #mainNav .nav-call {
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem !important;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  background: radial-gradient(ellipse at 30% 50%, #2a0a00 0%, var(--black) 70%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
  overflow: hidden;
}

/* Stars background */
.stars-bg { position: absolute; inset: 0; pointer-events: none; }
.star {
  position: absolute;
  color: var(--red);
  font-size: 2rem;
  opacity: 0.6;
  animation: twinkle 3s ease-in-out infinite;
}
.s1 { top: 8%;  left: 5%;  font-size: 2.5rem; animation-delay: 0s; }
.s2 { top: 20%; left: 60%; font-size: 1.5rem; animation-delay: 0.5s; }
.s3 { top: 55%; left: 2%;  font-size: 3rem;   animation-delay: 1s; }
.s4 { top: 75%; left: 45%; font-size: 1.8rem; animation-delay: 1.5s; }
.s5 { top: 15%; left: 85%; font-size: 2.2rem; animation-delay: 0.3s; }
.s6 { top: 65%; left: 80%; font-size: 1.4rem; animation-delay: 0.8s; }
.s7 { top: 40%; left: 50%; font-size: 2rem;   animation-delay: 1.2s; }
.s8 { top: 85%; left: 15%; font-size: 1.6rem; animation-delay: 0.6s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.2); }
}

/* ===== HERO SIGN BOARD ===== */
.hero-sign-board {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 360px;
  max-width: 100%;
  background: #1c1008;
  border: 4px solid #5a3a00;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.8), inset 0 0 60px rgba(0,0,0,0.4);
  padding: 1.4rem 1.2rem 1.4rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

/* Sign board decorative stars */
.sb-star {
  position: absolute;
  color: var(--red);
  font-size: 1.4rem;
  opacity: 0.85;
}
.sb-s1 { top: 6%;  left: 4%; }
.sb-s2 { top: 30%; left: 2%; font-size: 1rem; }
.sb-s3 { bottom: 8%;  left: 6%; font-size: 1.8rem; }
.sb-s4 { bottom: 10%; left: 28%; font-size: 1rem; }
.sb-s5 { top: 5%;  left: 18%; font-size: 1rem; }
.sb-s6 { bottom: 5%; right: 6%; font-size: 1.2rem; }

/* Cylinders inside sign board */
.sb-cylinders {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  z-index: 1;
  flex-shrink: 0;
}

.sb-cyl { display: flex; flex-direction: column; align-items: center; }
.sb-ctop  { border-radius: 50%; background: #9aa4ae; }
.sb-cvalve { background: var(--gold2); border-radius: 2px 2px 0 0; margin-bottom: -1px; }
.sb-cbody {
  background: linear-gradient(90deg, #7a848c 0%, #c0c8d0 45%, #8a9299 100%);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #2a2a2a; font-weight: 900; font-size: 0.62rem;
}
.sb-cbase { border-radius: 0 0 50% 50%; background: #8a9299; }

.sb-big .sb-ctop   { width: 38px; height: 12px; }
.sb-big .sb-cvalve { width: 8px;  height: 9px; }
.sb-big .sb-cbody  { width: 38px; height: 80px; }
.sb-big .sb-cbase  { width: 38px; height: 8px; }

.sb-med .sb-ctop   { width: 30px; height: 9px; }
.sb-med .sb-cvalve { width: 6px;  height: 7px; }
.sb-med .sb-cbody  { width: 30px; height: 60px; }
.sb-med .sb-cbase  { width: 30px; height: 6px; }

.sb-sml .sb-ctop   { width: 22px; height: 7px; }
.sb-sml .sb-cvalve { width: 5px;  height: 6px; }
.sb-sml .sb-cbody  { width: 22px; height: 42px; }
.sb-sml .sb-cbase  { width: 22px; height: 5px; }

/* Sign board text */
.sb-info {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sb-name  { color: var(--gold2); font-size: 1.15rem; font-weight: 900; font-style: italic; line-height: 1.1; }
.sb-exch  { color: var(--gold2); font-size: 1.05rem; font-weight: 900; letter-spacing: 1px; }
.sb-lpg   { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; margin-top: 2px; }
.sb-phone { color: var(--gold2); font-size: 0.9rem;  font-weight: 800; margin-top: 4px; letter-spacing: 1px; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

.hero-sub {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 0.8rem;
}
.hero-sub strong { color: var(--gold2); }

.hero-desc {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 2rem;
  max-width: 460px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* CSS Cylinders in hero */
.hero-cylinders {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.cylinder { display: flex; flex-direction: column; align-items: center; }

.cyl-top  { border-radius: 50%; background: #9aa4ae; }
.cyl-valve {
  width: 10px; height: 14px;
  background: var(--gold2);
  border-radius: 3px 3px 0 0;
  margin-bottom: -2px;
}
.cyl-body {
  background: linear-gradient(90deg, #8a9299 0%, #c8d0d8 45%, #9aa4ae 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 900;
  font-size: 0.9rem;
}
.cyl-base { border-radius: 0 0 50% 50%; background: #8a9299; }

.cylinder.big  .cyl-top  { width: 54px; height: 18px; }
.cylinder.big  .cyl-body { width: 54px; height: 130px; }
.cylinder.big  .cyl-base { width: 54px; height: 12px; }

.cylinder.med  .cyl-top  { width: 42px; height: 14px; }
.cylinder.med  .cyl-body { width: 42px; height: 100px; }
.cylinder.med  .cyl-base { width: 42px; height: 10px; }

.cylinder.sml  .cyl-top  { width: 32px; height: 10px; }
.cylinder.sml  .cyl-body { width: 32px; height: 70px; }
.cylinder.sml  .cyl-base { width: 32px; height: 8px; }

/* ===== WHY US ===== */
.why {
  background: var(--dark2);
  padding: 5rem 0;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}
.why h2 { margin-bottom: 2.5rem; }

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

.why-card {
  background: var(--dark);
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: var(--gold2); transform: translateY(-4px); }

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold2);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.why-card p { color: #aaa; font-size: 0.95rem; }

/* ===== PRODUCTS ===== */
.products { padding: 5rem 0; background: var(--black); }
.products h2 { margin-bottom: 0.5rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.product-card {
  background: var(--dark2);
  border: 2px solid #333;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.product-card:hover { border-color: var(--red); transform: translateY(-5px); }
.product-card.featured { border-color: var(--gold2); }
.product-card.featured:hover { border-color: var(--gold2); box-shadow: 0 0 30px rgba(200,160,0,0.25); }

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold2);
  color: var(--black);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.3rem 1.1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* CSS cylinders in product cards */
.product-cyl { display: flex; flex-direction: column; align-items: center; margin: 0.5rem 0 1rem; }

.pc-top  { border-radius: 50%; background: #9aa4ae; }
.pc-valve { background: var(--gold2); border-radius: 3px 3px 0 0; margin-bottom: -2px; }
.pc-body { background: linear-gradient(90deg, #8a9299 0%, #c8d0d8 45%, #9aa4ae 100%); border-radius: 6px; }
.pc-base { border-radius: 0 0 50% 50%; background: #8a9299; }

.big-cyl .pc-top  { width: 60px; height: 20px; }
.big-cyl .pc-valve{ width: 12px; height: 16px; }
.big-cyl .pc-body { width: 60px; height: 110px; }
.big-cyl .pc-base { width: 60px; height: 14px; }

.med-cyl .pc-top  { width: 48px; height: 16px; }
.med-cyl .pc-valve{ width: 10px; height: 13px; }
.med-cyl .pc-body { width: 48px; height: 90px; }
.med-cyl .pc-base { width: 48px; height: 11px; }

.sml-cyl .pc-top  { width: 36px; height: 12px; }
.sml-cyl .pc-valve{ width: 8px;  height: 10px; }
.sml-cyl .pc-body { width: 36px; height: 65px; }
.sml-cyl .pc-base { width: 36px; height: 8px; }

.xsml-cyl .pc-top  { width: 28px; height: 9px; }
.xsml-cyl .pc-valve{ width: 6px;  height: 8px; }
.xsml-cyl .pc-body { width: 28px; height: 48px; }
.xsml-cyl .pc-base { width: 28px; height: 6px; }

.product-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold2);
  text-transform: uppercase;
}
.prod-use { color: #888; font-size: 0.88rem; font-style: italic; }

.product-card ul {
  list-style: none;
  text-align: left;
  width: 100%;
  margin: 0.5rem 0;
}
.product-card ul li {
  padding: 0.3rem 0;
  color: #ccc;
  font-size: 0.93rem;
}
.product-card ul li::before {
  content: '✓ ';
  color: var(--gold2);
  font-weight: 700;
}

/* Price tag */
.price-tag {
  background: var(--dark);
  border: 1px solid var(--gold2);
  border-radius: 8px;
  padding: 0.45rem 1.1rem;
  font-size: 0.92rem;
  color: #bbb;
  width: 100%;
  text-align: center;
}
.price-tag span {
  color: var(--gold2);
  font-size: 1.35rem;
  font-weight: 900;
  margin-left: 4px;
}

/* Price disclaimer */
.price-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.5rem;
  background: rgba(200, 160, 0, 0.07);
  border: 1px solid rgba(200, 160, 0, 0.3);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
}
.price-notice-icon {
  font-size: 1.5rem;
  color: var(--gold2);
  flex-shrink: 0;
  line-height: 1.4;
}
.price-notice p {
  color: #aaa;
  font-size: 0.92rem;
  line-height: 1.6;
}
.price-notice p strong { color: var(--gold2); }

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(135deg, #1a0500 0%, var(--dark2) 100%);
  padding: 5rem 0;
  border-top: 2px solid var(--red);
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.about-text { flex: 1; min-width: 280px; }
.about-text h2 { text-align: left; margin-bottom: 1.2rem; }
.about-text p { color: #bbb; margin-bottom: 1rem; font-size: 1.02rem; }
.about-text p strong { color: var(--gold2); }
.about-text .btn { margin-top: 0.8rem; }

.about-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid var(--gold2);
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  box-shadow: 0 0 40px rgba(200,160,0,0.2);
  animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 30px rgba(200,160,0,0.2); }
  50%       { box-shadow: 0 0 60px rgba(200,160,0,0.45); }
}

.badge-star  { color: var(--red);  font-size: 1.8rem; }
.badge-title { color: var(--gold2); font-size: 1.4rem; font-weight: 900; font-style: italic; }
.badge-sub   { color: var(--white); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.badge-lpg   { color: var(--gold2); font-size: 1.1rem; font-weight: 800; letter-spacing: 3px; }

/* ===== CONTACT ===== */
.contact { padding: 5rem 0; background: var(--black); }
.contact h2 { margin-bottom: 0.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--dark2);
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: var(--red); transform: translateY(-3px); }

.contact-icon { font-size: 2.5rem; margin-bottom: 0.6rem; }
.contact-card h3 { color: var(--gold2); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.contact-link { color: var(--white); font-size: 1.15rem; font-weight: 700; display: block; margin-bottom: 0.3rem; }
a.contact-link:hover { color: var(--gold2); }
.contact-card p { color: #888; font-size: 0.9rem; }
.contact-card p strong { color: var(--white); }
.hours-holiday { color: var(--gold2) !important; font-weight: 600; margin-top: 0.3rem; }

/* Map */
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--red);
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 30px rgba(0,0,0,0.5);
}
.map-wrap iframe { display: block; }

.directions-btn {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: background 0.2s;
}
.directions-btn:hover { background: var(--red2); color: #fff; }

.whatsapp-cta { text-align: center; }

/* ===== FOOTER ===== */
footer {
  background: #0a0a0a;
  border-top: 2px solid var(--red);
  padding: 2.5rem 1.5rem 1rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand .brand-attie { font-size: 1.2rem; color: var(--gold2); font-weight: 900; font-style: italic; }
.footer-brand .brand-gas   { font-size: 0.9rem; color: var(--white); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.footer-brand p { color: #666; font-size: 0.82rem; margin-top: 0.3rem; }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #888; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold2); }

.footer-copy { text-align: center; border-top: 1px solid #222; padding-top: 1rem; }
.footer-copy p { color: #555; font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-sign-board { width: 100%; max-width: 380px; }

  .about-inner { flex-direction: column; text-align: center; }
  .about-text h2 { text-align: center; }

  nav { gap: 0.8rem; }
  nav a:not(.nav-call) { display: none; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0.7rem 1rem; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .hero-cylinders .cylinder.big  .cyl-body { height: 100px; }
  .why, .products, .about, .contact { padding: 3.5rem 0; }
}
