 body {
            background-color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding-top: 60px;
        }
        .menu-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            display: flex;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 1000;
        }
        .menu-bar a {
            color: white;
            padding: 5px 10px;
            text-decoration: none;
            text-align: center;
            transition: background-color 0.3s;
        }
        .menu-bar a:hover {
            background-color: #555;
        }
        .menu-bar a.active {
            background-color: #4682B4;
        }
        .slide {
            width: 90%;
            max-width: 1200px;
            margin: 40px auto;
            background-color: #f0f0f0;
            border: 1px solid #ccc;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: flex;
            flex-direction: column;
            min-height: 400px;
        }
        .header {
            background-color: #4682B4;
            color: white;
            padding: 5px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .slide-title {
            font-size: 1.6em;
            font-weight: normal;
            margin: 0;
            text-align: right;
        }
        .slide-number {
            font-weight: bold;
            font-size: 0.9em;
        }
        .content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 20px;
        }
        .text {
            flex: 3;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: justify;
            font-size: 1.2em;
            padding-right: 25px;
        }
        .text h3 {
            color: #4682B4;
            border-bottom: 2px solid #eaf2f8;
            padding-bottom: 5px;
        }
        .text ul, .text ol {
            padding-left: 20px;
        }
        .illustration {
            flex: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .illustration img {
            width: 100%;
            height: auto;
            border: 1px solid #ddd;
            box-shadow: 0 0 5px rgba(0,0,0,0.1);
        }