/* Start custom CSS for html, class: .elementor-element-f0f37af */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary: #e65100;
    --primary-light: #f57c00;
    --primary-dark: #bf360c;
    --accent: #ff8f00;
    --accent2: #ffcc80;
    --white: #ffffff;
    --off-white: #fff8f0;
    --text-dark: #111827;
    --text-mid: #374151;
    --text-light: #6b7280;
    --h1: 45px;
    --h2: 22px;
    --body: 14px;
  }

  .topnav-equip {
    background: var(--primary-dark);
    padding: 14px 5%;
    display: flex; align-items: center; gap: 12px;
  }
  
  .topnav-equip 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-equip a:hover { color: #fff; }
  .topnav-equip-sep { color: rgba(255,255,255,0.3); }

  .hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    color: var(--white);
    padding: 80px 5% 100px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    width: 550px; height: 550px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -130px; right: -90px;
  }
  .hero::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    bottom: -60px; left: 8%;
  }
  .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;
    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;
    max-width: 760px;
    margin-bottom: 40px;
  }

  /* EQUIPMENT LIST */
  .equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
  }
  .equip-card {
    background: var(--white);
    border-radius: 14px;
    padding: 24px 22px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 18px rgba(230,81,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .equip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(230,81,0,0.14);
  }
  .equip-num {
    min-width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .equip-card h3 {
    font-size: var(--h2);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
  }
  .equip-card p {
    font-size: var(--body);
    color: var(--text-light);
    line-height: 1.6;
  }

  /* JOURNEY TIMELINE */
  .timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(230,81,0,0.25);
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .tl-item {
    position: relative;
  }
  .tl-item::before {
    content: '';
    position: absolute;
    left: -39px;
    top: 6px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--off-white);
    box-shadow: 0 0 0 2px var(--primary);
  }
  .tl-year {
    font-size: var(--body);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  .tl-item h3 {
    font-size: var(--h2);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
  }
  .tl-item p {
    font-size: var(--body);
    color: var(--text-mid);
    line-height: 1.7;
  }

  .highlight-band {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, 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 {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: var(--body);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid transparent;
  }
  .btn-white { background: var(--white); color: var(--primary); }
  .btn-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; }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  @media (max-width: 768px) {
    :root { --h1: 32px; --h2: 19px; }
    .hero { padding: 60px 5% 80px; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
  }/* End custom CSS */