div.article-footer {
    margin-top: 80px;
  }
  .article-footer-text {
    text-align: left;
    word-wrap: break-word;
  
  }

.nawa-section { background:#fff; padding: 40px 20px 80px; }
  .nawa-container { max-width:1140px; margin:0 auto; }

  .nawa-cards {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap:25px;
    margin: 10px 0 50px;
  }
  .nawa-card{
    background:#003d7c; color:#fff; border-radius:10px; padding:22px; text-align:center;
    box-shadow:0 6px 14px rgba(0,0,0,.15); transition:transform .25s ease;
  }
  .nawa-card:hover{ transform:translateY(-4px); }
  .nawa-card .lbl{ font-size:14px; opacity:.9; text-transform:uppercase; letter-spacing:.5px; }
  .nawa-card .val{
    font-size:22px; font-weight:700; margin-top:8px;
    white-space:nowrap;
  }

  .nawa-content h2{ font-size:28px; margin-top:30px; color:#003d7c; }
  .nawa-content p{ line-height:1.6; margin:10px 0 18px; color:#333; }
  .nawa-content ul{ margin:10px 0 0 20px; }
  .nawa-content li{ 
    margin-bottom:8px; 
    line-height:1.6; 
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .nawa-content li strong {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .nawa-content .nowrap {
    white-space:nowrap;
  }

  .nawa-logo {
    text-align: center;
    margin: 20px 0 40px;
  }
  .nawa-logo img {
    display: inline-block;
    max-width: 100%;
    height: auto;
  }

  .nawa-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 20px;
  }

  .nawa-button {
    display: inline-block;
    background-color: #001a3d;
    color: #ffffff !important;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    min-width: 200px;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
  }

  .nawa-button::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 12px;
    border: 3px solid transparent;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .nawa-button:hover {
    background-color: #002a56;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #ffffff !important;
  }

  .nawa-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
  }

  a.nawa-button:focus,
  .nawa-button:focus {
    outline: none !important;
    color: #ffffff !important;
    padding: 16px 32px !important;
  }

  a.nawa-button:focus:not(:focus-visible),
  .nawa-button:focus:not(:focus-visible) {
    outline: none !important;
    border-color: transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
    padding: 16px 32px !important;
  }

  a.nawa-button:focus-visible,
  .nawa-button:focus-visible {
    outline: none !important;
    background-color: #002a56;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
    padding: 16px 32px !important;
  }

  .nawa-button:focus-visible::before {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 2px #001a3d;
  }

  @media (max-width:768px){
    .nawa-section{ padding:30px 15px 60px; }
    .nawa-content ul {
      margin-left: 15px;
      padding-right: 10px;
    }
    .nawa-content li {
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
      max-width: 100%;
    }
    .nawa-content li strong {
      white-space: normal !important;
      word-wrap: break-word;
      overflow-wrap: break-word;
      display: inline;
    }
    .nawa-buttons {
      flex-direction: column;
      gap: 15px;
    }
    .nawa-button {
      width: 100%;
      min-width: auto;
    }
    
    .article-bottom-graphics {
      flex-direction: column !important;
      flex-wrap: nowrap !important;
      align-items: center !important;
      margin: 40px auto;
      padding: 25px !important;
    }
    
    .article-bottom-graphics-item-left {
      width: 100% !important;
      max-width: 100% !important;
      min-height: auto;
      padding: 25px;
      gap: 20px;
      order: 1;
    }
    
    .article-bottom-graphics-item-right {
      width: 100% !important;
      max-width: 100% !important;
      margin: 20px auto !important;
      padding: 0 !important;
      order: 2;
    }
    
    .article-bottom-graphics-item-right-content-top,
    .article-bottom-graphics-item-right-content-bottom {
      width: 100%;
      padding: 25px !important;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .article-bottom-graphics {
      align-items: center !important;
    }
  }

  .article-bottom-graphics {
    max-height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin: 60px auto;
    padding: 40px;
    overflow: hidden;
    background-color: #183460 !important;

  }
  
  .article-bottom-graphics-item-left{
    width: 60%;
    min-height: 450px;
    overflow: visible;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
    gap: 25px;
  }
  
  .article-bottom-graphics-item-left > p:first-child {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .article-bottom-graphics-item-left ul {
    font-size: 0.9em;
    line-height: 1em;
    margin: 5px 0;
    padding-left: 20px;
  }
  
  .article-bottom-graphics-item-left li {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 8px 0;
    color: #fff;
  }
  
  .article-bottom-graphics-item-left p,
  .article-bottom-graphics-item-left a {
    font-size: 1em;
    line-height: 1.5;
    margin: 5px 0;
    color: #fff;
  }
  
  .article-bottom-graphics-item-left > p:last-child {
    text-align: left;
    width: 100%;
    margin-top: 20px;
    font-size: 1em;
  }

  .article-bottom-graphics-item-left a {
    text-decoration: none;
  }

  .article-bottom-graphics-item-left a:hover {
    color: #fff;
 
    text-decoration: underline;
    text-decoration-color: #fff;
    text-decoration-thickness: 1px;
    text-decoration-style: solid;
    text-decoration-offset: 2px;
    transition: all 0.3s ease;
  }
  
  .article-bottom-graphics-item-left img {
    max-height: 150px !important;
  }
  
  .article-bottom-graphics-item-right{
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .article-bottom-graphics-item-right-content-top,
  .article-bottom-graphics-item-right-content-bottom {
    background-color: #fff !important;
    padding: 25px;
    border-radius: 15px !important;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }

  .article-bottom-graphics-item-right img{
    max-width: 100%;
    max-height: 200px;
    height: auto;
    width: auto;
    object-fit: contain;
  }


  .article-contact-info {
    margin-top: 40px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f5f5f5;
    color: #000000;
  }
  
  .article-contact-info h3 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .article-contact-info > ul > li {
    list-style-type: none;
    margin-bottom: 10px;
  }

  .article-contact-info > ul > li > svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    color: #003d7c;
  }
  
  .article-contact-info > ul > li > a {
    text-decoration: none;
    color: #003d7c;
  }

  table.rates-table caption {
    font-size: 1em;
    font-weight: 300;
    color: #003d7c;
    text-align: center;
  }

  table.rates-table th {
    background-color: #003d7c;
    color: #ffffff;
    font-weight: 700;
  }

  table.rates-table th, tr {
    padding: 10px;
    text-align: center;
  }

  table.rates-table td {
    padding: 10px;
    text-align: left;
  }
  
  table.rates-table tr {
    border-bottom: 1px solid #ffffff;
  }

  table.rates-table th:first-child, table.rates-table td:first-child {
    min-width: 100px;
  }

  table.rates-table th:nth-child(2), table.rates-table td:nth-child(2) {
    min-width: 200px;
  }

  table.rates-table th:nth-child(3), table.rates-table td:nth-child(3) {
    min-width: 150px;
  }

  table.rates-table td.rates-table-cell {
    text-align: center;
  }