/* Start custom CSS for html, class: .elementor-element-4b72c68 */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary: #00695c;
    --primary-light: #00897b;
    --primary-dark: #004d40;
    --accent: #26a69a;
    --accent2: #80cbc4;
    --white: #ffffff;
    --off-white: #f0faf8;
    --text-dark: #111827;
    --text-mid: #374151;
    --text-light: #6b7280;
    --h1: 45px;
    --h2: 22px;
    --body: 14px;
  }


  .topnav {
    background: var(--primary-dark);
    padding: 14px 5%;
    display: flex; align-items: center; gap: 12px;
  }
  .topnav a {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: var(--body); font-weight: 500;
    display: flex; align-items: center; gap: 6px;
    transition: color 0.2s;
  }
  .topnav a:hover { color: #fff; }
  .topnav-sep { color: rgba(255,255,255,0.3); }

  .hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--accent) 100%);
    color: var(--white);
    padding: 80px 5% 100px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -120px; right: -80px;
  }
  .hero::after {
    content: '';
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    bottom: -60px; left: 12%;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: var(--body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: var(--h1);
    font-weight: 900;
    line-height: 1.15;
    max-width: 680px;
    margin-bottom: 20px;
    color:#fff;
  }
  .hero h1 span { color: var(--accent2); }
  .hero p {
    font-size: 16px;
    font-weight: 300;
    max-width: 560px;
    line-height: 1.7;
    opacity: 0.88;
    margin-bottom: 36px;
  }
  .hero-meta { display: flex; gap: 40px; flex-wrap: wrap; }
  .hero-meta-item strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
  }
  .hero-meta-item span { font-size: var(--body); opacity: 0.7; }

  .section {
    padding: 70px 5%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-label {
    font-size: var(--body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
  }
  .section h2 {
    font-size: var(--h2);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .section > p {
    font-size: var(--body);
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 10px;
  }
  .product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 24px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0,105,92,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,105,92,0.14);
  }
  .product-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .product-card h3 {
    font-size: var(--h2);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
  }
  .product-card p {
    font-size: var(--body);
    color: var(--text-light);
    line-height: 1.65;
  }

  .values-strip {
    background: var(--white);
    border-top: 1px solid rgba(0,105,92,0.1);
    border-bottom: 1px solid rgba(0,105,92,0.1);
    padding: 40px 5%;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  .value-item {
    text-align: center;
  }
  .value-item .val-icon { font-size: 32px; margin-bottom: 8px; }
  .value-item strong {
    display: block;
    font-size: var(--h2);
    font-weight: 700;
    color: var(--primary);
  }
  .value-item span {
    font-size: var(--body);
    color: var(--text-light);
  }

  .highlight-band {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
    color: var(--white);
    padding: 60px 5%;
    text-align: center;
  }
  .highlight-band h2 {
    font-size: var(--h1);
    font-weight: 900;
    margin-bottom: 14px;
    color:#fff;
  }
  .highlight-band p {
    font-size: var(--body);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
  }
  .btn-prod {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: var(--body);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
  }
  .btn-prod-white { background: var(--white); color: var(--primary); }
  .btn-prod-white:hover { background: transparent; color: var(--white); border-color: var(--white); }

  .page-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 24px;
    font-size: var(--body);
  }
  .page-footer a { color: var(--accent2); text-decoration: none; }

  @media (max-width: 768px) {
    :root { --h1: 32px; --h2: 19px; }
    .hero { padding: 60px 5% 80px; }
    .values-strip { gap: 30px; }
  }/* End custom CSS */