

        .container {
            width: 90%;
            margin: 35px auto;
        }

        .conference-details {
            background: #fff;
            padding: 28px;
            border-radius: 10px;
            box-shadow: 0 6px 14px rgba(0,0,0,0.1);
        }

        .conference-details h2 {
            text-align: center;
            color: #0a4b78;
            font-size: 1.8em;
            margin-bottom: 20px;
			 font-family: "IBM Plex Sans", sans-serif;
        }

        .table-scroll {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-top: 20px;
        }

        table {
            width: 100%;
            min-width:100%; 
            border-collapse: collapse;
        }

        table th, table td {
            padding: 14px 16px;
            text-align: center;
            border: 1px solid #ddd;
            font-size: 1.05em;
			 font-family: "IBM Plex Sans", sans-serif;
        }

        table th {
            background-color: #0a4b78;
            color: white;
            font-weight: 600;
			 font-family: "IBM Plex Sans", sans-serif;
        }

        table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        table tr:hover {
            background-color: #e1f1ff;
        }

        .table-scroll::-webkit-scrollbar {
            height: 8px;
        }

        .table-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .table-scroll::-webkit-scrollbar-thumb {
            background: #0a4b78;
            border-radius: 10px;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 22px;
            background-color: #0a4b78;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            margin-top: 22px;
            font-size: 1.05em;
        }

        .btn-primary:hover {
            background-color: #062f4d;
        }



        @media (max-width: 768px) {

            header h1 {
                font-size: 1.6em;
                padding: 0 12px;
            }

            header p {
                font-size: 1em;
                padding: 0 12px;
            }

            .conference-details {
                padding: 18px;
            }

            table th, table td {
                font-size: 0.95em;
                padding: 12px;
            }

            .btn-primary {
                width: 100%;
                text-align: center;
            }
        }

        footer {
            text-align: center;
            padding: 16px;
            margin-top: 45px;
            background-color: #0a4b78;
            color: white;
            font-size: 0.95em;
        }