 /* FULL WIDTH SECTION */
  .shipping-section {
    width: 100%;
    padding: 60px 0;
    background: #f8f8f8;
  }

  /* INNER WRAPPER (FULL WIDTH BUT WITH PADDING) */
  .policy-wrap {
    width: 100%;
    max-width: 1600px; /* optional limit */
    padding: 0 60px; /* desktop spacing */
    margin: 0 auto;
  }

  /* MOBILE PADDING */
  @media (max-width: 768px) {
    .policy-wrap {
      padding: 0 20px;
    }
  }

  /* GROUP HEADINGS */
  .group-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    font-size: 28px;
    margin: 32px 0 18px;
    color: #1d1d1d;
  }
  .group-title::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #e0e0e0;
  }

  /* ACCORDION ITEM */
  .policy-accordion .policy-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-bottom: 14px;
    overflow: hidden;
  }

  /* HEADER BUTTON */
  .policy-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 48px;
    align-items: stretch;
    padding: 0;
    border: 0;
    background: #f4f4f6;
    cursor: pointer;
    transition: background 0.25s ease;
    text-align: left;
  }
  .policy-toggle:hover {
    background: #ededf0;
  }

  .toggle-left {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    font-size: 17px;
    font-weight: 600;
    color: #1e1e1e;
  }
  .toggle-left i.fas {
    font-size: 18px;
    color: #6b6b6b;
    width: 20px;
    text-align: center;
  }

  .toggle-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1572E8;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
  }

  /* CONTENT + SMOOTH SLIDE ANIMATION */
  .policy-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #fff;
    padding: 0 20px;
    border-top: 1px solid #e5e5e5;
  }
  .policy-content.open {
    padding: 16px 20px;
  }

  .policy-content p {
    margin: 0 0 12px;
    color: #333;
    line-height: 1.6;
  }
  .policy-content ul {
    margin: 0 0 12px 18px;
  }
  .policy-content li {
    margin-bottom: 6px;
  }
  .policy-note-box {
    border: 1px solid #dcdcdc;
    background: #fff;
    border-radius: 6px;
    padding: 22px 26px;
    margin: 20px 0 40px;
    line-height: 1.6;
  }

  .policy-note-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
  }

  .policy-note-box i {
    font-size: 20px;
    color: #444;
  }