
      :root {
        --primary-color: #026d3a;
        --secondary-color: #333;
        --background-color: #fff;
        --text-color: #333;
        --border-color: #e0e0e0;
        --heading-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        --body-font: "Roboto", Arial, sans-serif;
      }


   

      .container-terms {
        background-color: #fff;
        border-radius: 8px;
        /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
width: 80vw;

        padding: 30px;
        /* margin-top: 5em;
        margin-bottom: 30px; */
        margin: 5em auto 0;
      }

      .header-terms {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid var(--primary-color);
      }

      .logo-terms {
        color: var(--primary-color);
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;

       
        font-family: var(--heading-font);
      }

      h1 {
        font-size: 24px;
        color: var(--secondary-color);
        margin-bottom: 10px;
        font-family: var(--heading-font);
      }

      h2 {
        font-size: 20px;
        color: var(--primary-color);
        margin: 25px 0 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--border-color);
        font-family: var(--heading-font);
      }

      h3 {
        font-size: 18px;
        color: var(--secondary-color);
        margin: 20px 0 10px;
        font-family: var(--heading-font);
      }

      p {
        margin-bottom: 15px;
      }

      .date {
        font-style: italic;
        color: #666;
        margin-bottom: 20px;
      }

      .section-terms {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
      }

      .section-terms:last-child {
        border-bottom: none;
      }

      .section-title {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
      }

      .section-number {
        background-color: var(--primary-color);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        margin-right: 10px;
      }

      ul,
      ol {
        padding-left: 30px;
        margin-bottom: 15px;
      }

      li {
        margin-bottom: 8px;
      }
      ul{
        list-style-type:circle;
      }

      .highlight {
        background-color: #fff8e6;
        padding: 15px;
        border-left: 4px solid var(--primary-color);
        margin: 15px 0;
      }

      strong {
        color: var(--secondary-color);
      }

      .contact-info {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
      }

      .contact-item {
        display: flex;
        align-items: center;
        margin-right: 20px;
      }

      .contact-icon {
        margin-right: 5px;
        color: var(--primary-color);
      }

      .footer {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
        color: #666;
      }

      @media (max-width: 768px) {
        .container {
          padding: 15px;
        }

        h1 {
          font-size: 20px;
        }

        h2 {
          font-size: 18px;
        }

        h3 {
          font-size: 16px;
        }
      }
