       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        #zikoda-footer-section-v1 {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #ffffff;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }

        .zikoda-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 20px;
        }

        .zikoda-footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .zikoda-footer-brand {
            grid-column: span 1;
        }

        .zikoda-footer-logo {
            width: 200px;
            height: auto;
            max-width: 100%;
            margin-bottom: 20px;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .zikoda-footer-logo:hover {
            opacity: 0.8;
        }

        .zikoda-footer-description {
            color: #b8b8d4;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .zikoda-footer-column h3 {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .zikoda-footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: #2C14E8;
        }

        .zikoda-footer-links {
            list-style: none;
        }

        .zikoda-footer-links li {
            margin-bottom: 12px;
        }

        .zikoda-footer-links a {
            color: #b8b8d4;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .zikoda-footer-links a:hover {
            color: #2C14E8;
            transform: translateX(5px);
        }

        .zikoda-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #b8b8d4;
            font-size: 14px;
        }

        .zikoda-contact-icon {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            fill: #2C14E8;
        }

        .zikoda-contact-item a {
            color: #b8b8d4;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .zikoda-contact-item a:hover {
            color: #2C14E8;
        }

        .zikoda-whatsapp-link {
            background: #25D366;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .zikoda-whatsapp-link:hover {
            background: #20b558;
            transform: translateY(-2px);
        }

        .zikoda-footer-bottom {
            border-top: 1px solid #2a2a4a;
            padding-top: 30px;
            text-align: center;
        }

        .zikoda-footer-copyright {
            color: #8a8aa8;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .zikoda-footer-love {
            color: #b8b8d4;
            font-size: 13px;
        }

        .zikoda-footer-love .heart {
            color: #e74c3c;
            font-size: 16px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .zikoda-footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .zikoda-footer-brand {
                grid-column: span 1;
                text-align: center;
            }

            .zikoda-footer-logo {
                width: 150px;
            }

            .zikoda-footer-container {
                padding: 40px 15px 15px;
            }

            .zikoda-footer-column h3 {
                font-size: 16px;
            }

            .zikoda-whatsapp-link {
                display: block;
                text-align: center;
                max-width: 200px;
                margin: 15px auto 0;
            }
        }

        @media (max-width: 480px) {
            .zikoda-footer-logo {
                width: 120px;
            }

            .zikoda-footer-container {
                padding: 30px 10px 10px;
            }

            .zikoda-footer-content {
                gap: 25px;
            }
        }

        /* Tablet Responsiveness */
        @media (max-width: 1024px) and (min-width: 769px) {
            .zikoda-footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 35px;
            }

            .zikoda-footer-brand {
                grid-column: span 2;
                text-align: center;
                margin-bottom: 20px;
            }
        }
    