  
        /* General Styles */
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #ed8bb7;
            color: #333;
        }
        .container {
            max-width: 900px;
            margin: 50px auto;
            padding: 40px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        /* Logo */
        .logo-container {
            text-align: center;
            margin-bottom: 30px;
        }
        .logo-container img {
            max-width: 180px;
            height: auto;
            transition: transform 0.3s;
        }
        .logo-container img:hover {
            transform: scale(1.05);
        }
        /* Back link */
        .back-link {
            display: flex;
            align-items: center;
            font-size: 1rem;
            font-weight: 500;
            color: #6366f1;
            text-decoration: none;
            margin-bottom: 25px;
            transition: color 0.3s;
        }
        .back-link:hover {
            color: #4f46e5;
        }
        .back-link::before {
            content: "←";
            margin-right: 8px;
            font-size: 1.2rem;
        }
        h1 {
            font-size: 2.5rem;
            color: #1f2937;
            text-align: center;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 1.5rem;
            color: #111827;
            margin-top: 30px;
            margin-bottom: 15px;
            border-left: 5px solid #6366f1;
            padding-left: 10px;
        }
        p, ul {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        ul {
            padding-left: 20px;
        }
        a {
            color: #6366f1;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        /* Responsive */
        @media (max-width: 600px) {
            .container {
                margin: 20px;
                padding: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.25rem;
            }
            .back-link {
                font-size: 0.95rem;
            }
        }
    