        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: white;
            padding: 20px 0;
            border: 2px solid #e9ecef;
            margin: 20px;
        }

        .header-content {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 760px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo img {
            height: 40px;
            width: auto;
            border-radius: 4px;
        }

        /* Main Content */
        .main-content {
            background: #f8f9fa;
            margin: 0 20px;
            border-left: 2px solid #e9ecef;
            border-right: 2px solid #e9ecef;
            padding: 60px 40px;
            text-align: center;
        }

        .hero-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 40px;
            color: #333;
        }

        .hero-description {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-description p {
            margin-bottom: 20px;
        }

        /* Connect Section */
        .connect-section {
            margin-bottom: 80px;
        }

        .connect-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
            color: #333;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-link {
            background: #6c757d;
            color: white;
            padding: 12px;
            text-decoration: none;
            border-radius: 4px;
            font-size: 12px;
            min-width: 70px;
            text-align: center;
        }

        .social-link:hover {
            background: #5a6268;
        }

        /* Support Section */
        .support-section {
            margin-bottom: 40px;
        }

        .support-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
            color: #333;
        }

        .support-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .donate-btn {
            background: #2c3e50;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 20px;
        }

        .donate-btn:hover {
            background: #1a252f;
        }

        .security-note {
            font-size: 12px;
            color: #999;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin: 0 20px;
            border: 2px solid #34495e;
        }

        .footer-brand {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .footer-tagline {
            font-size: 14px;
            color: #bdc3c7;
            margin-bottom: 30px;
        }

        .footer-divider {
            height: 1px;
            background: #34495e;
            margin: 30px 0;
        }

        .footer-copyright {
            font-size: 12px;
            color: #95a5a6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                justify-content: center;
            }

            .main-content {
                padding: 40px 20px;
                margin: 0 10px;
            }

            .hero-title {
                font-size: 24px;
            }

            .social-links {
                flex-wrap: wrap;
                gap: 10px;
            }

            footer {
                margin: 0 10px;
            }
        }