        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;

        }

        .cont {
            padding: 20px;
            padding-left: 20px;
            padding-right: 100px;

        }

        .toc {
            border-right: 1px solid #5ca9cf;
            margin-top: 20px;
            padding: 0 20px;
            font-size: 14px;
        }

        .toc ul {
            list-style-type: none;
        }

        .toc ul li {
            margin: 5px 0;
        }

        .toc a {
            text-decoration: none;
            color: #007bff;
        }

        .toc a:hover {
            text-decoration: underline;
        }

        h4 {
            margin-top: 30px;
        }

        .section-content {
            margin-bottom: 30px;
        }

        .fixed {
            position: sticky;
            top: 0;
            height: 100vh;
            overflow-y: auto;
        }

        footer {
            background-color: rgb(29, 53, 87);
            color: #f1faee;
            text-align: center;
            padding: 10px 0;
        }
        .info-container {
            background-color: #FFF9E6;  /* Light yellow background */
            border-radius: 15px;  /* Rounded corners */
            padding: 12px 20px;
            display: flex;
            align-items: start;  /* Aligns the icon and text */
            margin: 20px auto;  /* Centers the container */
            font-family: Arial, sans-serif;
        }

        /* Style for the info icon */
        .info-icon {
            color: #F39C12;  /* Dark yellow color for the icon */
            margin-top: 8px;
            margin-right: 15px; /* Space between the icon and text */
            font-size: 20px;  /* Icon size */
        }

        /* Style for the text */
        .info-text {
            color: #333;  /* Text color */
            font-size: 16px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .info-container {
                padding: 15px;
                font-size: 14px;
            }
            .info-icon {
                font-size: 20px;
            }
        } 