:root {
  --bg: #FFFFFF;
  --text: #292929;

  --primary: #004A96;      
  --accent-blue: #20A0D2;  
  --accent: #b0e1f7;

  --footer: #7C7C7C;
}



/* ================= BASE ================= */

:root {
  --bg: #ffffff;
  --text: #292929;
  --primary: #004A96;
  --accent: #b0e1f7;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

h1, h2, h3, h4, h5, h6,
.logo,
.slogan-quote {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Generic layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary);
}

/* Responsive container */
@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }
}




/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: linear-gradient(
    90deg,
    rgba(0, 74, 150, 0.95),
    rgba(32, 160, 210, 0.95)
  );
  box-shadow: 0 4px 24px rgba(0, 26, 51, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.header-inner {
  max-width: 1400px;
  margin: auto;
  padding: 20px 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.logo img {
  height: 68px;
  display: block;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: center;
}

.nav a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav a:hover,
.nav a.active {
  opacity: 1;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Search Button */
.icon-btn {
  background: none;
  border: none;
  color: white;
  font-size: 15px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ================= SITE SEARCH ================= */

.site-search {
  position: relative;
}

.search-panel {
  position: absolute;
  top: 130%;
  right: 0;
  width: 340px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 1100;
  overflow: hidden;
}

.search-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid #eef2f6;
}

.search-box-icon {
  color: #7C7C7C;
  font-size: 13px;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'Inter', Arial, sans-serif;
  color: #292929;
}

.search-close {
  background: none;
  border: none;
  color: #7C7C7C;
  cursor: pointer;
  font-size: 13px;
  padding: 4px;
}

.search-results {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
}

.search-results.has-query {
  padding: 6px 0;
}

.search-results li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  color: #292929;
  text-decoration: none;
  font-size: 13.5px;
}

.search-results li a:hover {
  background: #f2f4f7;
}

.search-result-title {
  font-weight: 500;
}

.search-result-cat {
  font-size: 11px;
  color: #7C7C7C;
  background: #eef2f6;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-no-results {
  padding: 14px;
  font-size: 13px;
  color: #7C7C7C;
  text-align: center;
}

/* Clear the fixed header when jumping to an in-page anchor */
section[id] {
  scroll-margin-top: 120px;
}

@media (max-width: 900px) {
  .search-panel {
    width: 280px;
  }
}

/* ================= LANGUAGE DROPDOWN ================= */

.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  height: 32px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  border-radius: 16px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Divider between the search icon and the language button */
.header-actions > .lang-dropdown {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.lang-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: white;
  color: #222;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  min-width: 170px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 20;
}

.lang-menu li {
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.lang-menu li:hover {
  background: #f2f4f7;
}

.lang-dropdown:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ================= PRODUCTS DROPDOWN ================= */

.nav-dropdown {
  position: relative;
}

.nav-link {
  position: relative;
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 0.88;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  transition: opacity 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-dropdown:hover .nav-link {
  opacity: 1;
}

.nav-dropdown:hover .nav-link::after {
  width: 100%;
}

.nav-caret {
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: #ffffff;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  min-width: 260px;
  border-radius: 8px;

  box-shadow: 0 12px 32px rgba(0, 74, 150, 0.18);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 20;
}

.nav-dropdown .dropdown-menu li a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  color: #004A96;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.nav-dropdown .dropdown-menu li a:hover {
  background: rgba(176, 225, 247, 0.35);
  color: #004A96;
}

/* Show on hover */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  padding-top: 140px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 26px;
  line-height: 1.5;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 74, 150, 0.85),
    rgba(0, 74, 150, 0.45)
  );
}

.hero-inner {
  max-width: 1400px;
  margin: auto;
  padding-left: 80px;
  width: 100%;
}

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

/* Title */
.hero-title {
  font-size: 50px;
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-title span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-top: 14px;
  opacity: 0.9;
}

/* Text */
.hero-text {
  font-size: 17px;
  line-height: 1.75;
  opacity: 0.95;
}

/* Button */
.hero-btn {
  display: inline-block;
  margin-top: 34px;
  padding: 14px 26px;
  background: #ffffff;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

/* ================= SCROLL ANIMATION ================= */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-title {
    font-size: 34px;
  }
}


/* ================= PRODUCTS ================= */

.products {
  background: #f4f8fb;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #004A96;
}

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

.product-card {
  background: #ffffff;
  border: 1px solid #e3eef6;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  box-shadow: 0 10px 26px rgba(0, 74, 150, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 74, 150, 0.14);
}

.product-image {
  background: #f4f8fb;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid #e3eef6;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

/* Title */
.product-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #004A96;
}

/* Text */
.product-content p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  color: #7C7C7C;
}

/* Button */
.product-btn {
  margin-top: auto;
  align-self: flex-start;
  background: #004A96;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.25s ease;
}

.product-btn:hover {
  background: #20A0D2;
}



/* ================= INDUSTRIES ================= */

.industries {
  position: relative;
  background: #b0e1f7;
  padding: 140px 0 140px; 
  overflow: hidden;
}

/* Fade TOP */
.industries::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(
    to top,
    rgba(176, 225, 247, 0),
    #f4f8fb
  );
  pointer-events: none;
  z-index: 1;
}

/* Fade BOTTOM */
.industries::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(176, 225, 247, 0),
    rgba(255, 255, 255, 1)
  );
  pointer-events: none;
  z-index: 1;
}

/* Content stays above fades */
.industries .container {
  position: relative;
  z-index: 2;
}

/* Header */
.industries-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  border-bottom: 1px solid rgba(12, 68, 124, 0.15);
  padding-bottom: 26px;
  margin-bottom: 44px;
}

/* Title */
.industries-title {
  font-size: 34px;
  font-weight: 700;
  color: #004A96;
  margin: 0;
}

/* Subtitle */
.industries-subtitle {
  font-size: 16px;
  color: #7C7C7C;
  margin: 0;
  white-space: nowrap;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .industries-subtitle {
    white-space: normal;
  }
}

/* Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Cards */
.industry-card {
  background: #ffffff;
  border: 1px solid #e3eef6;
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;

  box-shadow: 0 8px 20px rgba(0, 74, 150, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: #b5d4f4;
  box-shadow: 0 16px 32px rgba(0, 74, 150, 0.12);
}

/* Icon badge */
.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6f1fb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: #cfe6f8;
}

.industry-card img {
  width: 26px;
  height: 26px;
  transition: transform 0.35s ease;
}

.industry-card:hover img {
  transform: scale(1.1);
}

/* Text */
.industry-card span {
  font-size: 14px;
  font-weight: 600;
  color: #2b2b2b;
  transition: color 0.3s ease;
}

.industry-card:hover span {
  color: #004A96;
}



/* ================= SLOGAN ================= */

.slogan {
  position: relative;
  background: #ffffff;
  padding: 120px 0;
  overflow: hidden;
}

.slogan::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(to bottom, rgba(176, 225, 247, 0), rgba(176, 225, 247, 0.25));
  pointer-events: none;
}

.slogan .container {
  position: relative;
  z-index: 2;
}

.slogan-quote {
  max-width: 900px;
  margin: 0 auto;
  font-size: 32px;
  line-height: 1.45;
  color: #004A96;
  text-align: center;
  font-weight: 500;
  position: relative;
  padding: 40px 60px;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Activated fade-in */
.slogan-quote.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Quote marks */
.slogan-quote::before,
.slogan-quote::after {
  position: absolute;
  font-size: 64px;
  color: rgba(0, 74, 150, 0.15);
}

.slogan-quote::before {
  content: "“";
  top: 0;
  left: 0;
}

.slogan-quote::after {
  content: "”";
  bottom: 0;
  right: 0;
}

/* Highlighted keywords */
.slogan-quote strong {
  font-weight: 700;
  color: #00306b;
}




/* ================= CLIENTS ================= */

.clients {
  background: rgba(176, 225, 247, 0.25); /* very soft transparent blue */
  padding: 80px 0;
}

.partners-title {
  text-align: center;
  color: #4a4a4a; /* dark gray */
  font-weight: 700; /* thicker */
  font-size: 30px;
  margin-bottom: 48px;
}

/* Slider */
.logo-slider {
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 22s linear infinite;
}

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-item {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animation */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .partners-title {
    font-size: 24px;
  }

  .logo-item {
    width: 120px;
    height: 64px;
  }

  .logo-track {
    gap: 40px;
  }
}


/* ================= CTA ================= */

.cta {
  background: #004A96; /* Brand dark blue */
  padding: 36px 0;     /* smaller height */
}

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

.cta-title {
  color: #ffffff;
  font-size: 20px;     /* smaller title */
  font-weight: 500;    /* less bold, more professional */
  margin: 0;
  letter-spacing: 0.2px;
}

.cta-btn {
  background: #ffffff;
  color: #004A96;
  padding: 10px 22px;  /* slimmer button */
  border-radius: 22px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: #e6eef7;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-inner {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}



/* ================= FOOTER ================= */

.footer {
  background: #141414;
  color: #cfcfcf;
  padding-top: 76px;
}

/* Brand / tagline block */
.footer-top {
  text-align: center;
  padding-bottom: 36px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top h4 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 14px;
}

.footer-tagline {
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 14px;
  line-height: 1.75;
  color: #9a9a9a;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #cfcfcf;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #004A96;
  color: #ffffff;
}

/* Column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr 1.25fr;
  gap: 36px;
  padding-bottom: 52px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #9a9a9a;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #20A0D2;
}

.footer-address,
.footer-email {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #9a9a9a;
  margin: 0 0 16px;
}

.footer-phones {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-phones li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: #9a9a9a;
}

.footer-address i,
.footer-email i,
.footer-phones i {
  width: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
  color: #20A0D2;
}

.footer-newsletter p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #9a9a9a;
  margin: 0 0 18px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 13.5px;
  font-family: 'Inter', Arial, sans-serif;
}

.newsletter-form input::placeholder {
  color: #7a7a7a;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #20A0D2;
}

.newsletter-form button {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  background: #004A96;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.newsletter-form button:hover {
  background: #20A0D2;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: #9a9a9a;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .footer-address,
  .footer-email,
  .footer-phones li {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }

  .newsletter-form {
    max-width: 360px;
    margin: 0 auto;
  }
}



/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }

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

  .hero-inner {
    padding-left: 40px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

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

  .hero h1 {
    font-size: 34px;
  }

  .product-image img {
    height: 200px;
  }
}

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

  .industries-subtitle {
    white-space: normal; /* allow wrapping on tablet */
  }
}

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

@media (max-width: 768px) {
  .slogan-quote {
    font-size: 24px;
    padding: 30px 20px;
  }
}


@media (max-width: 900px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-text p {
    max-width: 100%;
  }

  .product-hero-alt h1 {
    font-size: 34px;
  }
}



