 :root {
            --primary: #9CCC65;
            --primary-dark: #8BC34A;
            --accent: #FA784F;
            --text-primary: #212121;
            --text-secondary: #757575;
            --white: #FFFFFF;
            --green-a700: #00BFA5;
            --green-a400: #1DE9B6;
            --blue-a700: #0091EA;
            --blue-a400: #00B0FF;
            --teal-a700: #00B8D4;
            --teal-a400: #00E5FF;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }

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

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background: linear-gradient(135deg, #f9fdf6 0%, #e8f5e9 100%);
            min-height: 100vh;
        }

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

        .header {
            background: var(--gradient);
            color: white;
            padding: 70px 0 60px 0;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 0 0 30px 30px;
            box-shadow: var(--card-shadow);
        }

        .header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
            padding: 6px 0;
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .last-updated {
            background: var(--white);
            padding: 15px;
            text-align: center;
            margin: -20px auto 40px;
            max-width: 400px;
            border-radius: 25px;
            box-shadow: var(--card-shadow);
            font-weight: 500;
            color: var(--primary-dark);
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card h2 {
            color: var(--primary-dark);
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .card h2::before {
            content: "•";
            color: var(--accent);
            font-size: 2rem;
        }

        .highlight-card {
            background: var(--gradient);
            color: white;
            grid-column: 1 / -1;
        }

        .highlight-card h2 {
            color: white;
        }

        .highlight-card h2::before {
            color: var(--green-a400);
        }

        .not-emphasis {
            color: var(--accent);
            font-weight: 800;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .app-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .app-card {
            background: rgba(255, 255, 255, 0.2);
            padding: 15px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .contact-section {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: var(--card-shadow);
            margin-top: 40px;
        }

        .contact-section h3 {
            color: var(--primary-dark);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .email-btn {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(156, 204, 101, 0.3);
        }

        .email-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(156, 204, 101, 0.4);
        }

        footer {
            text-align: center;
            padding: 30px;
            color: var(--text-secondary);
            margin-top: 50px;
        }

        /* List indentation styles */
        .content ul {
            margin-left: 36px;
            margin-bottom: 20px;
        }

        .content li {
            margin-bottom: 12px;
            padding-left: 10px;
        }

        .highlight-box ul {
            margin-left: 36px;
            margin-bottom: 15px;
        }

        .highlight-box li {
            margin-bottom: 10px;
            padding-left: 8px;
        }

        .warning-box ul {
            margin-left: 36px;
            margin-bottom: 15px;
        }

        .warning-box li {
            margin-bottom: 10px;
            padding-left: 8px;
        }

        .app-list ul {
            margin-left: 36px;
            margin-bottom: 15px;
        }

        .app-list li {
            margin-bottom: 8px;
            padding-left: 5px;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }

            .grid-container {
                grid-template-columns: 1fr;
            }

            .app-grid {
                grid-template-columns: 1fr;
            }

            /* Adjust indentation for mobile */
            .content ul {
                margin-left: 20px;
            }

            .highlight-box ul,
            .warning-box ul {
                margin-left: 15px;
            }
        }