 main {
            padding: 20px;
        }

        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .card {
            background-color: #ecf0f1;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
        }

        .card:hover {
            background-color: #3498db;
            color: #fff;
        }

        /* footer {
            background-color: #34495e;
            color: #fff;
            text-align: center;
            padding: 1em;
            position: fixed;
            bottom: 0;
            width: 100%;
        } */

        a{
            text-decoration:none;
            color:black;
        }

        .goto{
            background-color: #4caf50;
            color: #fff;
            padding: 15px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 19px;
            transition: background-color 0.3s ease;
            position: fixed;
            bottom: 60px;
            right: 20px;
            height:53px;
        }

        .goto:hover{
            background-color:#3498db;
        }

        .whats{
            background-color: #4caf50;
            color: #fff;
            padding: 12px 13.5px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 30px;
            transition: background-color 0.3s ease;
            position: fixed;
            bottom: 120px;
            right: 20px;
            height:57px;
        }

        .whats:hover{
            background-color:#3498db;
        }

        #pageCount{
            color:transparent;
        }

        /* ============================= */
        /* Scoped Styling for New Content */
        /* ============================= */

        .extra-content h2 {
            font-size: 24px;
            margin-top: 40px;
            color: #2c3e50;
            border-left: 4px solid #3498db;
            padding-left: 10px;
        }

        .extra-content h3 {
            font-size: 18px;
            margin-top: 20px;
            color: #34495e;
        }

        .extra-content p {
            font-size: 16px;
            color: #555;
            margin: 15px 0;
            line-height: 1.6;
        }

        .extra-content ul {
            margin: 15px 0 15px 20px;
            padding-left: 15px;
        }

        .extra-content ul li {
            margin-bottom: 8px;
            font-size: 15px;
            color: #444;
        }

        .extra-content h3 + p {
            background: #f9f9f9;
            padding: 10px 15px;
            border-radius: 5px;
        }

        h2 {
            border-left: 4px solid #3498db;
            padding-left: 10px;
        }
    h2 {
    margin-top:40px;
    color:#2c3e50;
    border-left: none;
    position: relative;
    padding-left: 15px;
    z-index:-1;
}
table {
      width: 100%;
      border-collapse: collapse;
      animation: fadeIn 2s ease; /* Apply the animation to the table */
    }

    th, td {
      border: 1px solid black;
      padding: 8px;
      text-align: center;
    }

    th {
      background-color: #f2f2f2;
    }

    tr:nth-child(even) {
      background-color: #f2f2f2;
    }
h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 70%;
    background: #3498db;
    border-radius: 5px;
}
