<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @font-face {
            font-family: 'Super Comic';
            src: url('fonts/SuperComic-qZg62.ttf') format('truetype');
        }

        .kukdukoo-footer {
            position: relative;
            background: #C9ECFB;
            padding: 55px 40px 25px;
            font-family: 'Super Comic', sans-serif;
            overflow: hidden;
            min-height: 280px;
        }

        /* TOP GRASS */

        .kukdukoo-footer-top {
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            z-index: 1;
        }

        .kukdukoo-footer-top img {
            width: 100%;
            display: block;
            transform: translateY(-40px);
        }

        /* CONTENT */

        .footer-inner {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        /* LEFT MENU */

        .footer-links {
            width: 32%;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-size: 20px;
            font-weight: 200;
            color: #000;
            line-height: 1;
        }

        .footer-links a:hover {
            opacity: .8;
        }

        /* CENTER */

        .footer-center {
            width: 30%;
            text-align: center;
        }

        .footer-logo {
            width: 160px;
            margin: auto;
            display: block;
        }

        .book-btn {
            position: relative;
            display: inline-block;
            margin-top: 10px;
        }


        .book-btn img {
            width: 220px;
            display: block;
        }

        .book-btn span {
            position: absolute;
            top: 50%;
            left: 44%;
            transform: translate(-50%, -50%);
            font-family: 'Super Comic', sans-serif;
            font-size: 16px;
            font-weight: 200;
            color: #fff;
            white-space: nowrap;
            line-height: 1;
            pointer-events: none;
        }

        /* RIGHT */

        .footer-right {
            width: 32%;
            text-align: center;
        }

        .footer-title {
            font-size: 24px;
            font-weight: 200;
            color: #000;
            line-height: 1;
            margin-bottom: 12px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .social-icons a {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border: 2px solid #444;
            font-size: 22px;
            color: #000;
        }

        .social-line {
            width: 180px;
            height: 2px;
            background: #000;
            margin: 0 auto 20px;
        }

        .contact-btn {
            display: inline-block;
            position: relative;
        }

        .contact-btn img {
            width: 220px;
            display: block;
        }

        .contact-btn span {
            position: absolute;
            top: 50%;
            left: 45%;
            transform: translate(-50%, -50%);
            font-size: 16px;
            font-weight: 400;
            color: #fff;
            white-space: nowrap;
        }

        .footer-links {
            padding-top: 140px;
        }

        .footer-center {
            padding-top: 130px;
        }

        .footer-right {
            padding-top: 140px;
        }

        /* MOBILE */

        @media(max-width:767px) {

            .kukdukoo-footer {
                padding: 80px 15px 40px;
            }

            /* Top bushes */
            .kukdukoo-footer-top img {
                width: 100%;
                display: block;
                transform: translateY(-20px);
            }

            /* Layout */
            .footer-inner {
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-areas:
                    "logo logo"
                    "menu social"
                    "book contact";
                align-items: start;
                gap: 15px;
                max-width: 100%;
                margin-top: 15px;
            }

            /* Center Logo */
            .footer-center {
                grid-area: logo;
                width: 100%;
                text-align: center;
                padding-top: 20px;
            }

            .footer-logo {
                width: 95px;
                margin: 0 auto;
            }

            /* Left Menu */
            .footer-links {
                grid-area: menu;
                width: 100%;
                padding-top: 10px;
            }

            .footer-links ul {
                padding: 0;
            }

            .footer-links li {
                margin-bottom: 8px;
            }

            .footer-links a {
                justify-content: flex-start;
                font-size: 14px;
                gap: px;
            }

            /* Right Social */
            .footer-right {
                grid-area: social;
                width: 100%;
                padding-top: 10px;
                text-align: center;
            }

            .footer-title {
                font-size: 14px;
                margin-bottom: 10px;
            }

            .social-icons {
                gap: 6px;
                margin-bottom: 10px;
            }

            .social-icons a {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }

            .social-line {
                width: 90px;
                margin: 0 auto 10px;
            }

            /* Buttons Row */
            .book-btn {
                grid-area: book;
                justify-self: center;
                margin-top: 5;
            }

            .contact-btn {
                grid-area: contact;
                justify-self: center;
            }

            .book-btn img,
            .contact-btn img {
                width: 145px;
            }

            .book-btn span,
            .contact-btn span {
                font-size: 11px;
            }

        }

        /* FOOTER TABLET RESPONSIVENESS */
        @media (max-width: 1024px) {
            .footer-links a {
                font-size: 16px;
            }

            .footer-title {
                font-size: 16px;
            }

            .social-icons a {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            .book-btn img,
            .contact-btn img {
                width: 180px;
            }

            .book-btn span,
            .contact-btn span {
                font-size: 13px;
            }
        }
    </style>