.exc-section {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 26px 28px;
    margin-bottom: 28px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04);
  }

  .exc-title {
    font-family: 'Segoe UI','Inter',sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: #0A3D62;
    margin-bottom: 18px;
  }

  .exc-text,
  .exc-list,
  .exc-sublist {
    font-family: 'Segoe UI','Inter',sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.65;
    color: #1a1a1a;
  }

  .exc-text {
    margin-bottom: 24px;
  }

  .exc-list,
  .exc-sublist {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .exc-list li {
    margin-bottom: 22px;
    padding-left: 32px;
    position: relative;
  }

  .exc-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: #2196F3;
    font-weight: bold;
    font-size: 1.2em;
  }

  .exc-subtitle {
    font-weight: 700;
    font-size: clamp(18px, 2.4vw, 20px);
    margin: 26px 0 14px 0;
    color: #0A3D62;
  }

  .exc-sublist li {
    margin-left: 18px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
  }

  .exc-sublist li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2196F3;
    font-size: 1.5em;
  }

  .route-highlight {
    background: linear-gradient(90deg, rgba(33, 150, 243, 0.1), transparent);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #2196F3;
  }

  .route-point {
    font-weight: 700;
    color: #0A3D62;
    display: inline-block;
    margin-right: 8px;
  }