  :root{
    --brown-1: #5b2f10;
    --brown-2: #8a5a40;
    --accent-yellow: #f2bf00;
    --white: #ffffff;
    --muted: rgba(255,255,255,0.9);
  }

  /* Reset-ish */
  *{box-sizing: border-box}
  body{
    margin:0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: #f3f3f3;
    color: #222;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }


  /* Top bar */
  .topbar{
    background: #f7f6f4;
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 16px;
    border-bottom:1px solid rgba(0,0,0,0.06);
  }
  .location {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    color:#0b0b0b;
    text-decoration:underline;
  }
  .icon-pin{
    width:22px;height:22px;border-radius:50%;
    border:2px solid #111; display:inline-flex;align-items:center;justify-content:center;
    font-weight:700;font-size:12px;
  }


  /* Main area (brown panel) */
  .panel {
    background: linear-gradient(180deg, #7a4c2b 0%, #6d3f24 100%);
    color:var(--white);
    padding:26px 18px 60px;
    min-height:80vh;
  }
  .brand-row{
    display:flex;align-items:center;gap:14px;margin-bottom:22px;
  }
  /* mock ups logo circle */
  .ups-logo{
    width:56px;height:56px;border-radius:12px;background:#5f3810;display:flex;align-items:center;justify-content:center;
    color:var(--accent-yellow);font-weight:900;font-size:18px;box-shadow:0 3px 8px rgba(0,0,0,0.25);
  }
  .search-icons{margin-left:auto;display:flex;gap:12px;align-items:center}
  .search-icons .icon{width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,0.12)}

  h1.track-title{
    font-size:30px;margin:8px 0 18px;font-weight:700;
  }

  .tracking-box{
    max-width:680px;
  }
  .tracking-input{
    display:block;
    width:100%;
    padding:16px 14px;
    border-radius:8px;
    border: none;
    font-size:16px;
    margin-bottom:14px;
  }
  .track-button{
    display:inline-block;
    width:100%;
    padding:16px 18px;
    border-radius:40px;
    border: none;
    background:var(--accent-yellow);
    color:#0b0b0b;
    font-weight:800;
    font-size:16px;
    cursor:pointer;
    box-shadow: 0 6px 0 rgba(0,0,0,0.08);
  }
  .help-line{margin-top:12px;color:rgba(255,255,255,0.9);text-decoration:underline; font-weight:500;}

  hr.divider{
    border:none;height:1px;background:rgba(255,255,255,0.12);
    margin:20px 0 18px;
  }

  .blaa {
    color: #0b0b0b;
    font-weight: bolder;
  }


  /* Accordion list */
  .accordion{
    background:transparent;
    color:var(--white);
    width:100%;
    max-width:720px;
  }
  .acc-item{
    padding:18px 4px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
  }
  .acc-item .title{
    font-size:28px;
    font-weight:600;
    letter-spacing:0.2px;
  }
  .acc-item .chev{
    transform:rotate(0deg);
    transition:transform .22s ease;
    font-size:20px;
  }
  .acc-item.open .chev{ transform:rotate(180deg) }

  /* expanded panel */
  .acc-panel{
    overflow:hidden;
    max-height:0;
    transition: max-height .28s cubic-bezier(.2,.95,.2,1), padding .22s;
    padding:0 4px;
  }
  .acc-panel.open{
    padding:12px 4px 18px;
  }

  /* the select style */
  .panel-select{
    width:100%;
    padding:14px 12px;
    border-radius:8px;
    border:none;
    font-size:16px;
    -webkit-appearance:none;
    appearance:none;
    background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
    color:#111;
  }

  /* small help text */
  .select-hint{margin-top:10px;color:rgba(255,255,255,0.75);font-size:14px}

  /* layout responsiveness */
  @media (min-width:700px){
    .panel{padding:42px 40px}
    .brand-row{margin-bottom:30px}
    .track-title{font-size:36px}
    .acc-item .title{font-size:30px}
  }


    /* Reset + base */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html,body { height: 100%; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:#111; background: #fff; }
    a { color: inherit; text-decoration: none; }

    /* Page container (centered column with padding) */
    .page {
      max-width: 480px;        /* similar width to the example */
      margin: 28px auto;       /* center horizontally with top spacing */
      padding: 0 18px;
      margin-top: -10px;
    }

    /* Blue promo card */
    .promo {
      background: #2f78ae;     /* medium-blue background */
      color: #fff;
      border-radius: 2px;
      padding: 26px 22px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .promo h1 {
      font-size: 32px;         /* large heading */
      line-height: 1.05;
      font-weight: 600;
      letter-spacing: -0.5px;
      margin-top: 4px;
    }

    .promo p {
      font-size: 16px;
      line-height: 1.45;
      opacity: 0.95;
      max-width: 100%;
    }

    /* Pill button row (centered) */
    .promo .btn-row {
      display:flex;
      justify-content:center;
      margin-top: 6px;
    }

    /* HTML button styled like rounded yellow pill */
    .pill-btn {
      border: none;
      outline: none;
      cursor: pointer;
      background: #ffcc00;         /* bright yellow */
      color: #111;
      padding: 14px 48px;
      font-size: 18px;
      font-weight: 600;
      border-radius: 40px;        /* pill shape */
      box-shadow: 0 6px 0 rgba(0,0,0,0.08) inset, 0 6px 18px rgba(0,0,0,0.08);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: transform 120ms ease, box-shadow 120ms ease;
      min-width: 240px;           /* same relative width as your example */
    }

    .pill-btn:active { transform: translateY(2px); }

    /* Arrow glyph like the image */
    .pill-btn .arrow {
      font-size: 18px;
      opacity: 0.9;
    }

    /* Lower content section */
    .services {
      margin-top: 40px;
      padding-top: 8px;
    }

    .services h2 {
      font-size: 34px;
      line-height: 1.02;
      font-weight: 600;
      color: #0b0b0b;
    }

    /* small yellow underline */
    .underline {
      width: 44px;
      height: 6px;
      background: #ffcc00;
      border-radius: 4px;
      margin: 14px 0;
    }

    .services p.lead {
      font-size: 16px;
      line-height: 1.6;
      color: #222;
      margin-top: 6px;
    }

    /* Make layout adapt to smaller screens */
    @media (max-width:420px) {
      .page { padding: 0 14px; }
      .promo h1 { font-size: 28px; }
      .pill-btn { padding: 12px 34px; min-width: 200px; font-size:16px; }
      .services h2 { font-size: 30px; }
    }


    :root{
    --bg-brown:#59280dbd;    /* top brown bar color */
    --accent-yellow:#f2c400; /* yellow used for icon & underline */
    --page-bg:#ffffff;
    --text-color:#111;
    --max-width:420px; /* approximate mobile width from the image */
  }

  /* Page + centering */
  html,body{
    height:100%;
    margin:0;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    background:var(--page-bg);
    color:var(--text-color);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }

  .frame{
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding:20px 12px;
    box-sizing:border-box;
  }


  .card{
    width:100%;
    max-width:var(--max-width);
    background:var(--page-bg);
    position:relative;
    overflow:visible;
    box-sizing:border-box;
  }

  /* Content area */
  .content{
    position:relative;
    z-index:2;
    padding:36px 22px 48px 22px;
    box-sizing:border-box;
  }

  /* small caution icon (yellow triangle with exclamation) */
  .icon-row{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:12px; /* provides the white gap under the curve like the photo */
  }

  .triangle{
    width:44px; height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg, #ffd95f 0%, #f2c400 100%);
    border-radius:6px;
    transform:skewX(-6deg) rotate(-2deg);
    box-shadow: 0 6px 10px rgba(0,0,0,0.12);
  }

  /* inner SVG sits centered */
  .triangle svg{
    width:22px;
    height:22px;
    display:block;
  }

  /* Headline style (multi-line, big) */
  .headline{
    margin:18px 0 12px 0;
    font-weight:700;
    line-height:1.05;
    font-size:34px;
    letter-spacing: -0.2px;
    color: #000;
    max-width:100%;
  }

  /* short yellow underline bar */
  .underline{
    width:56px;
    height:6px;
    background:var(--accent-yellow);
    border-radius:4px;
    margin:6px 0 14px 0;
    box-shadow:0 1px 0 rgba(0,0,0,0.06) inset;
  }

  /* Body paragraph - mimics the spacing & weight from the photo */
  .body-text{
    font-size:16px;
    line-height:1.6;
    color:#222;
    max-width:100%;
    font-weight:400;
    letter-spacing:0px;
  }

  /* Make it look more like the original spacing and column width */
  /* Responsive adjustments */
  @media (min-width:560px){
    .headline{ font-size:40px; }
    :root { --max-width:560px; }
  }

  /* small visual tweak to match the original left alignment of text lines */
  .left-col{
    margin-left:4px;
  }


    /* Page centering */
  html,body{
    height:100%;
    margin:0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background:#fff;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }
  .wrap{
    min-height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:32px;
    box-sizing:border-box;
  }

  /* Card container */
  .ard{
    width:320px;             /* approximate width like the image */
    box-shadow: none;
    border-radius:2px;
  }

  /* Each row */
  .row{
    display:flex;
    align-items:center;
    gap:22px;
    background:#f2f2f2;     /* light gray panel */
    padding:26px 28px;
    box-sizing:border-box;
    border-left:0;
    border-right:0;
  }

  /* separator between rows: white thin stripe */
  .row + .row{
    margin-top:14px;          /* space between panels (white stripe) */
    position:relative;
  }

  .text{
    font-size:20px;
    color:#171717;
    font-weight:500;
    letter-spacing:0.1px;
  }

  /* icon common */
  .icon{
    width:52px;
    height:52px;
    min-width:52px;
    min-height:52px;
    border-radius:50%;
    display:inline-block;
    position:relative;
    flex-shrink:0;
  }

  /* --- Business Accounts icon (red circle person) --- */
  .icon.business{ background:#d60b0b; } /* deep red */
  .icon.business::before{
    /* head */
    content:"";
    position:absolute;
    left:50%;
    top:22%;
    transform:translateX(-50%);
    width:18px;
    height:18px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 14px 0 -4px #fff; /* create body circle/shoulders illusion */
  }
  .icon.business::after{
    /* torso semicircle (cutout) */
    content:"";
    position:absolute;
    left:50%;
    bottom:10%;
    transform:translateX(-50%);
    width:36px;
    height:18px;
    background:#fff;
    border-bottom-left-radius:18px;
    border-bottom-right-radius:18px;
    border-top-left-radius:6px;
    border-top-right-radius:6px;
  }

  /* --- Customs icon (red with hat/symbol) --- */
  .icon.customs{ background:#d60b0b; overflow:visible; }
  .icon.customs .hat{
    position:absolute;
    left:12px;
    top:12px;
    width:28px;
    height:12px;
    background:#fff;
    border-radius:2px;
    box-shadow: 0 6px 0 0 #fff, -6px 0 0 0 #fff; /* thicker middle look */
  }
  .icon.customs .visor{
    position:absolute;
    left:16px;
    top:18px;
    width:20px;
    height:4px;
    background:#d60b0b; /* cut-out for visor */
    transform:skewX(-12deg);
  }
  .icon.customs .badge{
    position:absolute;
    left:9px;
    bottom:10px;
    width:14px;
    height:10px;
    background:#fff;
    border-radius:2px;
  }

  /* --- Sustainable Shipping leaf (green) --- */
  .icon.leaf{
    background:transparent;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .leaf-shape{
    width:44px;
    height:24px;
    position:relative;
    transform:rotate(-12deg);
  }
  .leaf-shape::before, .leaf-shape::after{
    content:"";
    position:absolute;
    border-radius:14px;
  }
  .leaf-shape::before{
    left:0;
    top:0;
    width:44px;
    height:24px;
    background:transparent;
    box-shadow: inset -28px 0 0 0 #116838; /* fill left half */
    border-radius:12px;
    transform:skewX(-18deg);
  }
  .leaf-shape::after{
    left:6px;
    top:2px;
    width:28px;
    height:20px;
    background:transparent;
    box-shadow: inset -22px 0 0 0 #16904f; /* lighter green stripes */
    border-radius:10px;
    transform:skewX(-8deg);
    mix-blend-mode:screen;
  }
  /* leaf veins */
  .leaf-vein{
    position:absolute;
    left:50%;
    top:50%;
    width:1px;
    height:30px;
    background:#fff;
    transform-origin:top center;
    transform:translate(-50%,-50%) rotate(-12deg);
    opacity:0.95;
  }
  .leaf-vein::before, .leaf-vein::after{
    content:"";
    position:absolute;
    left:1px;
    top:4px;
    width:18px;
    height:2px;
    background:#fff;
    border-radius:2px;
    transform-origin:left center;
    box-shadow:0 6px 0 0 #fff, 0 -6px 0 0 #fff;
  }

  /* --- Rates icon (red square with percent & stripes) --- */
  .icon.rates{
    background:#d60b0b;
    position:relative;
    overflow:visible;
  }
  .rates-square{
    width:38px;
    height:28px;
    background:#c90808;
    position:absolute;
    left:7px;
    top:12px;
    border-radius:4px;
    box-shadow:inset 0 0 0 2px rgba(255,255,255,0.03);
  }
  .rates-square::before{
    content:"🏷️";
    position:absolute;
    right:4px;
    top:3px;
    font-weight:700;
    color:#fff;
    font-size:12px;
    line-height:1;
  }
  .rates-stripes{
    position:absolute;
    left:9px;
    top:7px;
    width:6px;
    height:20px;
    display:flex;
    flex-direction:column;
    gap:3px;
  }
  .rates-stripes span{
    display:block;
    width:100%;
    height:3px;
    background:#c90808;
    transform:translateX(-2px);
    border-radius:2px;
    box-shadow:0 0 0 1px rgba(255,255,255,0.02) inset;
  }

  /* responsive */
  @media (max-width:480px){
    .card{ width:92%; }
    .text{ font-size:18px; }
    .row{ padding:18px; gap:14px; }
    .icon{ width:46px; height:46px; min-width:46px; min-height:46px; }
  }




  /* --- GLOBAL --- */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


/* --- SECTION 2 (BROWN BACKGROUND) --- */
.section-brown{
  width:370px;
  background:#9a8a5f;
  color:#fff;
  padding:40px 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius:6px;
  margin: 0 auto;        /* ✅ centers the brown box */
}
.feature{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:32px;
}
.feature-icon{
  width:28px;
  height:28px;
  flex-shrink:0;
  position:relative;
  border:2px solid #fff;
  border-radius:50%;
}
.feature-icon::before,
.feature-icon::after{
  content:"";
  position:absolute;
  background:#fff;
}
.feature:nth-child(1) .feature-icon::before{
  width:8px;height:8px;border-radius:50%;
  top:5px;left:5px;
  box-shadow:10px 0 0 #fff;
}
.feature:nth-child(2) .feature-icon::before{
  top:7px;left:6px;
  width:16px;height:16px;
  border-radius:50%;
  background:none;
  border:2px solid #fff;
}
.feature:nth-child(2) .feature-icon::after{
  width:8px;height:8px;
  background:#fff;border-radius:50%;
  bottom:5px;right:5px;
}
.feature:nth-child(3) .feature-icon::before{
  width:10px;height:10px;
  border:2px solid #fff;
  border-radius:50%;
  top:7px;left:7px;
}
.feature:nth-child(3) .feature-icon::after{
  width:10px;height:2px;
  background:#fff;
  left:9px;bottom:6px;
}
.feature:nth-child(4) .feature-icon::before{
  width:14px;height:2px;background:#fff;
  top:6px;left:6px;
  transform:rotate(45deg);
}
.feature:nth-child(4) .feature-icon::after{
  width:14px;height:2px;background:#fff;
  bottom:6px;left:6px;
  transform:rotate(-45deg);
}
.feature h3{
  font-size:20px;
  margin-bottom:6px;
  font-weight:700;
}
.feature p{
  font-size:15px;
  line-height:1.6;
  color:#f7f7f7;
}


/* Free Trial section */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


.trial-container {
  background: linear-gradient(180deg, #6C8BFF 0%, #3956F6 100%);
  color: white;
  text-align: center;
  padding: 40px 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 350px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin: 0 auto;        /* ✅ centers the brown box */
  
}

.trial-container h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  font-weight: bolder;
  margin-bottom: 18px;
}

.trial-container p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #E6EAFF;
}

.trial-container button {
  background-color: #0D0E12;
  color: white;
  border: none;
  padding: 14px 45px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trial-container button:hover {
  background-color: #20222A;
}

.bottom-text {
  margin-top: 25px;
}

.bottom-text p {
  font-size: 15px;
  color: #FFFFFF;
  margin: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.footer-content {
  text-align: right;
  font-size: 10px;
}

