/*  */
*{
    color: black;
}

    table {
        width: px;
    }

    table,
    table th,
    table td {
        border: solid;
    }

    table th,
    table td {
        border: solid;
    }

    table th>ol>li,
    table td>ul>li,
    table th>ul>li,
    table td>ol>li {
        list-style: initial !important;
        margin-left: 20px;

    }

    .marker {
        background-color: yellow;
    }

    /* </p><table border="1" cellpadding="1" cellspacing="1" style="width:500px">  */

    .description>ul>li {
        margin-left: 30px !important;
        list-style: initial;
        font-size: 16px !important;
    }


    .description>ol>li {
        /* list-style: decimal; */
        margin-left: 30px !important;
        all: revert;
        font-size: 16px !important;
    }


    .description>ul>li>ul>li {
        margin-left: 15px !important;
        list-style: initial;
        font-size: 16px !important;
    }

    .description>ol>li>ol>li {
        margin-left: 15px !important;
        all: revert;
        font-size: 16px !important;
    }

    .description>ol>li>ul>li {
        margin-left: 15px !important;
        list-style: initial;
        font-size: 16px !important;
    }

    .description>ul>li>ol>li {
        margin-left: 15px !important;
        all: revert;
        font-size: 16px !important;
    }

    .description>ul>li>ul {
        margin-left: 0px !important;
        margin-bottom: 15px !important;
        list-style: initial;
        font-size: 16px !important;
    }

    .description>ol>li>ol {
        margin-left: 0px !important;
        margin-bottom: 15px !important;

        all: revert;
        font-size: 16px !important;
    }

    .description>ol>li>ul {
        margin-left: 0px !important;
        margin-bottom: 15px !important;

        list-style: initial;
        font-size: 16px !important;
    }

    .description>ul>li>ol {
        margin-left: 0px !important;
        margin-bottom: 15px !important;
        all: revert;
        font-size: 16px !important;
    }

    .description>p>a {
        color: blue;
        font-weight: bold;
        text-decoration: none !important;
    }
    .description>p>a>b {
        color: blue;
        font-weight: bold;
        text-decoration: none !important;
    }

    .description>p {
        font-size: 18px !important;
        margin-bottom: 0px !important;
        margin-top: 15px !important;
    }
    .description>h2>p{
        font-size: 18px !important;
    }
    .description>h2{
        font-size: 26px !important;
    }

    .description>h3 {
        font-size: 22px !important;
        margin-top: 30px !important;
        margin-bottom: 10px !important;
    }



    .circle-container {
            width: 180px;
            height: 54px;
            background: linear-gradient(135deg, #4CAF50, #2E8B57); /* Green Gradient */
            border-radius: 12px; /* Makes it round */
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 15px; /* Space between buttons */
            box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
            /* position: fixed; */
            bottom: 20px;
            right: 20px;
            padding: 15px;
        }

        /* Icon Buttons */
        .circle-button {
            
            background-color: white;
            border: none;
            width: 40px; /* Icon size */
            height: 40px;
            border-radius: 50%; /* Makes buttons round */
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease-in-out;
        }

        /* Hover Effect */
        .circle-button:hover {
            background-color: #2E8B57;
            transform: scale(1.1); /* Slight zoom */
        }

        /* Icon Images */
        .circle-button img {
            width: 25px; /* Adjust icon size */
            height: 25px;
        }
        .hidden { display: none; }

        .cardlink:hover{
            color: red !important;
        }


/* FAQ */

.faq_container {
    max-width: 1000px;
    margin: 60px 10px !important;
    padding: 20px;
  }

  .faq-section-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .faq-section-title h2 {
    font-size: 36px;
    color: #222;
  }

  .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-accordion-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .faq-accordion-header:hover {
    background-color: #e8f0fe;
  }

  .faq-accordion-title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
  }

  .faq-step-badge {
    background-color: #4a90e2;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
  }

  .faq-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: #888;
  }

  .faq-accordion-header.active .faq-arrow {
    transform: rotate(90deg);
    color: #4a90e2;
  }

  .faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    background-color: #fafbfc;
  }

  .faq-accordion-body.open {
    max-height: 500px;
    padding: 16px 24px;
  }

  .faq-accordion-body p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
  }

  @media (max-width: 600px) {
    .faq-section-title h2 {
      font-size: 28px;
    }

    .faq-accordion-title {
      font-size: 16px;
    }
  }

