.news-launch-container {
            display: flex;
            max-width: 1000px;
            margin: 0rem auto;
            padding: 2rem;
            gap: 3rem;
        }

        .news-launch-content {
            flex: 1;
            padding-right: 3rem;
            border-right: 2px solid #e0e0e0;
            line-height: 1.4;
        }

        .news-launch-content h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: #70195e;
        }

        .news-launch-content .last-updated {
            color: #666;
            font-size: 1rem;
            font-style: italic;
            margin-top: -0.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .news-launch-content h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 0.5rem;
            color: #56288a;
        }

        .news-launch-content p {
            margin-bottom: 1rem;
            color: #333;
        }

        .news-launch-content ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .news-launch-content ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .news-launch-content li {
            margin-bottom: 0.75rem;
            color: #333;
        }

        .news-launch-content a {
            color: #e44097;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .news-launch-content a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        .news-launch-sidebar {
            width: 250px;
            position: sticky;
            top: 100px;
            align-self: flex-start;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .news-launch-sidebar-title {
            padding: 16px;
            font-weight: 700;
            font-size: 1.1rem;
            color: white;
            text-align: center;
            background-color: #70195e;
            border: 2px solid #70195e;
            width: 100%;
            box-sizing: border-box;
        }

        .news-launch-sidebar-menu {
            background-color: #f9f9f9;
            border: 2px solid #e0e0e0;
            border-top: none;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            width: 100%;
            box-sizing: border-box;
        }

        .news-launch-sidebar a {
            padding: 12px 16px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            color: #56288a;
            display: block;
            transition: 0.3s;
            border-left: 4px solid transparent;
            border-bottom: 1px solid #e0e0e0;
            width: 100%;
            box-sizing: border-box;
        }

        .news-launch-sidebar a:last-child {
            border-bottom: none;
        }

        .news-launch-sidebar a:hover {
            color: #70195e;
            background-color: #f0e6f6;
            border-left-color: #70195e;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .news-launch-container {
                flex-direction: column;
                padding: 1rem;
                gap: 2rem;
            }

            .news-launch-content {
                padding-right: 0;
                border-right: none;
            }

            .news-launch-sidebar {
                width: 100%;
                position: static;
            }
        }