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

        .buildy-footer body {
            font-family: 'Kanit', sans-serif;
            background-color: #f5f5f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .buildy-footer .content {
            flex: 1;
            padding: 40px 20px;
            text-align: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .buildy-footer .content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .buildy-footer .content p {
            font-size: 1.2rem;
            font-weight: 300;
        }

        .buildy-footer .footer {
            background-color: #f8f9fa;
            color: #333;
            font-family: 'Kanit', sans-serif;
        }

        .buildy-footer .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px 30px;
        }

        .buildy-footer .footer-columns {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .buildy-footer .footer-column h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .buildy-footer .footer-column ul {
            list-style: none;
        }

        .buildy-footer .footer-column ul li {
            margin-bottom: 12px;
        }

        .buildy-footer .footer-column ul li a {
            color: #666;
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .buildy-footer .footer-column ul li a:hover {
            color: #f49f80;
            text-decoration: underline;
        }

        .buildy-footer .payment-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
            align-items: center;
            justify-items: center;
        }

        .buildy-footer .payment-logo {
            width: 70px;
            height: 45px;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            padding: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 500;
            color: #495057;
            transition: all 0.2s ease;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
        }

        .buildy-footer .payment-logo:hover {
            border-color: #d1d5db;
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
        }

        .buildy-footer .payment-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .buildy-footer .visa { background: linear-gradient(135deg, #1a1f71 0%, #0f4c75 100%); color: white; }
        .mastercard { background: linear-gradient(135deg, #eb001b 0%, #f79e1b 100%); color: white; }
        .scb { background: linear-gradient(135deg, #4e2a84 0%, #9013fe 100%); color: white; }
        .kbank { background: linear-gradient(135deg, #138808 0%, #7cb342 100%); color: white; }
        .ktb { background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%); color: white; }
        .paypal { background: linear-gradient(135deg, #003087 0%, #009cde 100%); color: white; }

        .buildy-footer .social-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .buildy-footer .social-links a {
            color: #666;
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            padding: 8px 12px;
            border-radius: 6px;
            background: rgba(102, 126, 234, 0.05);
        }

        .buildy-footer .social-links a:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            transform: translateX(5px);
        }

        .buildy-footer .footer-separator {
            height: 1px;
            background-color: #ccc;
            margin: 30px 0 25px;
        }

        .buildy-footer .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .buildy-footer .footer-bottom-left {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .buildy-footer .footer-bottom-left p {
            color: #666;
            font-size: 0.9rem;
            font-weight: 300;
        }

        .buildy-footer .footer-bottom-left .copyright {
            font-weight: 500;
        }

        .buildy-footer .footer-logo {
            height: 30px;
            max-width: 120px;
        }

        .buildy-footer .footer-logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

            @media (max-width: 768px) {
            .buildy-footer .footer-columns {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .buildy-footer .payment-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .buildy-footer .payment-logo {
                width: 60px;
                height: 40px;
                font-size: 0.75rem;
            }

            .buildy-footer .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .buildy-footer .social-links {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                margin-right: 8px;
            }

            .buildy-footer .social-links a {
                padding: 6px 10px;
                font-size: 0.85rem;
            }
        }

            @media (max-width: 480px) {
            .buildy-footer .footer-columns {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .buildy-footer .footer-content {
                padding: 40px 15px 25px;
            }

            .buildy-footer .payment-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .buildy-footer .payment-logo {
                width: 55px;
                height: 38px;
                font-size: 0.7rem;
                padding: 6px;
            }

            .buildy-footer .social-links {
                flex-direction: column;
                align-items: stretch;
            }

            .buildy-footer .content h1 {
                font-size: 2rem;
            }

            .buildy-footer .content p {
                font-size: 1rem;
            }
        }
