/* Scope styles to avoid breaking your main theme */
        .wp-post-container {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
            color: #333333;
            line-height: 1.6;
            margin: 0 auto;
            padding: 0px;
        }

        /* Main Info Table Styles */
        .wp-info-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 25px;
        }
        .wp-info-table td {
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
        }
        .wp-info-table td:first-child {
            font-weight: bold;
            width: 35%;
        }

        /* Section Headings */
        .wp-heading {
            background-color: #2f3dd3;
            color: #ffffff;
            padding: 12px 15px;
            font-size: 1.3rem;
            font-weight: bold;
            margin-top: 30px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Standard Lists */
        .wp-post-container ul, .wp-post-container ol {
            padding-left: 20px;
            margin-bottom: 25px;
        }
        .wp-post-container li {
            margin-bottom: 10px;
        }

        /* Notification / Callout Boxes */
        .wp-alert-box {
            background-color: #fff3e0;
            border-left: 5px solid #ff9800;
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
        }

        /* Data Tables (Syllabus / Marks) */
        .wp-data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .wp-data-table th, .wp-data-table td {
            border: 1px solid #e0e0e0;
            padding: 12px;
            text-align: left;
        }
        .wp-data-table th {
            background-color: #f5f5f5;
            font-weight: bold;
        }
        .wp-data-table tr:nth-child(even) {
            background-color: #fafafa;
        }

        /* Action Links Style */
        .wp-link {
            color: #d32f2f;
            font-weight: bold;
            text-decoration: none;
        }
        .wp-link:hover {
            text-decoration: underline;
        }

        /* FAQ Section */
        .wp-faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 15px;
        }
        .wp-faq-question {
            font-weight: bold;
            color: #d32f2f;
            margin-bottom: 5px;
        }

        /* Responsive adjustments */
        @media (max-width: 600px) {
            .wp-info-table td {
                display: block;
                width: 100% !important;
            }
            .wp-info-table td:first-child {
                background-color: #eaeaea;
            }
        }