    /* CSS Variables & Theme */
        :root {
            /* Colors */
            --primary: #4a5d4a;
            --primary-light: #6b7f6b;
            --primary-dark: #2f3e2f;
            --secondary: #8b6f47;
            --secondary-light: #a68860;
            --accent: #7c9885;
            --success: #6b8e72;
            --warning: #d4a574;
            --danger: #c67e61;
            --info: #5b8fa3;
            --dark: #2c3e2c;
            --gray: #6e7c6e;
            --light-gray: #f5f7f5;
            --bg: #fafbfa;
            --white: #ffffff;
            
            /* Shadows */
            --shadow: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
            
            /* Spacing */
            --spacing-xs: 0.25rem;
            --spacing-sm: 0.5rem;
            --spacing-md: 1rem;
            --spacing-lg: 1.5rem;
            --spacing-xl: 2rem;
            
            /* Border Radius */
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-full: 9999px;
            
            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            
            /* Z-index */
            --z-backdrop: 999;
            --z-modal: 1000;
            --z-tooltip: 1100;
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Outfit", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Main content untuk demo */
        main {
            flex: 1;
            background-color: var(--bg);
        }

        /* Footer Styles */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: var(--spacing-xl) 0;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--spacing-lg);
        }

        /* Social Media Icons */
        .social-media {
            display: flex;
            gap: var(--spacing-lg);
            align-items: center;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            background-color: var(--primary);
            color: var(--white);
            text-decoration: none;
            transition: all var(--transition-normal);
        }

        .social-link:hover {
            background-color: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* Copyright Text */
        .copyright {
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.5px;
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Media Queries untuk Tablet */
        @media screen and (max-width: 768px) {
            .footer-container {
                padding: 0 20px;
                gap: var(--spacing-md);
            }

            footer {
                padding: var(--spacing-lg) 0;
            }
        }

        /* Media Queries untuk Mobile */
        @media screen and (max-width: 480px) {
            .footer-container {
                padding: 0 15px;
            }

            .social-media {
                gap: var(--spacing-md);
            }

            .social-link {
                width: 36px;
                height: 36px;
            }

            .social-link svg {
                width: 18px;
                height: 18px;
            }

            .copyright {
                font-size: 13px;
                line-height: 1.4;
            }

            footer {
                padding: var(--spacing-md) 0;
            }
        }

        /* Media Queries untuk Mobile Kecil */
        @media screen and (max-width: 320px) {
            .copyright {
                font-size: 12px;
            }
        }