
  .panteto-container {
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    line-height: 1.6;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 16px;
  }
  .panteto-header-block {
    border-bottom: 2px solid #0056b3;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .panteto-header-block h2 {
    font-size: 18px;
    font-weight: bold;
    color: #0d233a;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .panteto-subtitle {
    font-size: 16px;
    color: #555555;
    font-weight: normal;
    margin: 0;
  }
  .panteto-section-title {
    font-size: 18px;
    font-weight: bold;
    color: #0d233a;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
    margin-top: 35px;
    margin-bottom: 15px;
  }
  .panteto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
  }
  @media (max-width: 768px) {
    .panteto-grid {
      grid-template-columns: 1fr;
    }
  }
  .panteto-card {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 18px;
    font-size: 16px;
  }
  .panteto-card h4 {
    margin-top: 0;
    color: #0056b3;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  .panteto-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
  }
  .panteto-table th, .panteto-table td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 12px;
  }
  .panteto-table th {
    background-color: #0d233a;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    width: 30%;
  }
  .panteto-table tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  .panteto-workflow {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
  }
  .panteto-step {
    flex: 1;
    min-width: 180px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-top: 4px solid #0056b3;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
  }
  .panteto-step-title {
    font-size: 18px;
    font-weight: bold;
    color: #0d233a;
    display: block;
    margin-top: 5px;
  }
  .panteto-step-num {
    font-size: 18px;
    font-weight: bold;
    color: #0056b3;
  }
  .panteto-faq-accordion details {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fafafa;
  }
  .panteto-faq-accordion summary {
    font-weight: bold;
    color: #0d233a;
    font-size: 16px;
    padding: 15px;
    cursor: pointer;
    list-style: none;
    position: relative;
  }
  .panteto-faq-accordion summary::-webkit-details-marker {
    display: none;
  }
  .panteto-faq-accordion summary::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #0056b3;
  }
  .panteto-faq-accordion details[open] summary::after {
    content: '-';
  }
  .panteto-faq-accordion .faq-content {
    padding: 0 15px 15px 15px;
    font-size: 16px;
    color: #333333;
  }
