 body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9fafb;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px 30px;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        h1 {
            font-size: 2.5rem;
            color: #1a202c;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 700;
        }

        h2 {
            font-size: 1.75rem;
            color: #2d3748;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
            border-left: 4px solid #3b82f6;
            padding-left: 12px;
        }

        p {
            margin-bottom: 15px;
            font-size: 1rem;
            color: #4a5568;
        }

        ul {
            margin-bottom: 15px;
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
            font-size: 1rem;
            color: #4a5568;
        }

        a {
            color: #3b82f6;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        a:hover {
            color: #2563eb;
            text-decoration: underline;
        }

        .logo {
            display: block;
            margin: 0 auto 20px;
            max-width: 150px;
            height: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .last-updated {
            text-align: center;
            font-size: 0.9rem;
            color: #718096;
            margin-bottom: 30px;
            font-style: italic;
        }

        .contact-info {
            background-color: #f1f5f9;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .contact-info p {
            margin: 0;
        }

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

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .logo {
                max-width: 120px;
            }
        }