 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f4f7fa;
            margin: 0;
            padding: 0;
            color: #333;
        }

        header {
            background-color: #5a0a0a;
            color: white;
            padding: 30px 20px;
            text-align: center;
        }

        header h1 {
            margin: 0;
            font-size: 2.5em;
        }

        .container {
            max-width: 1100px;
            margin: 40px auto;
            padding: 20px;
        }

        .event {
            background-color: white;
            border-left: 6px solid #5a0a0a;
            border-radius: 10px;
            margin-bottom: 30px;
            padding: 20px 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s;
        }

        .event:hover {
            transform: translateY(-5px);
        }

        .event h2 {
            margin-top: 0;
            color: #000000;
            font-size: 1.6em;
        }

        .event .meta {
            font-size: 0.95em;
            color: #666;
            margin-bottom: 10px;
        }

        .event p {
            line-height: 1.6;
        }

        a {
            color: #0056b3;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        footer {
            background-color: #eee;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            header h1 {
                font-size: 2em;
            }

            .event h2 {
                font-size: 1.4em;
            }
        }