        body {
            margin: 0;
            padding: 0;
            background: radial-gradient(circle, #156197, #000000);
            color: #061d2d;
        }

        .top-img-banner {
            width: 100%;
            height: 30vh;
            background-size: cover;
            background-position: center;
        }

        .top-img-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .container {
            max-width: 900px;
            margin: 20px auto;
            padding: 20px;
            background-color: #ffffff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            text-align: center;
            border: 5px double #061d2d;
        }

        .contacthead {
            font-size: 2.5em;
            color: #ca9c6a;
            margin-bottom: 20px;
            letter-spacing: 4px;
            margin-top: 0;
        }

        .subtext {
            line-height: 1.6;
            font-size: 16px;
            margin: 15px 20px;
            line-height: 28px;
        }

        .contact-info {
            margin: 30px 0;
            padding: 10px;
            background-color: #fdf6e8;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .contact-info h2 {
            font-size: 1.2em;
            text-transform: uppercase;
            color: #ca9c6a;
            margin-bottom: 15px;
        }

        .contact-info a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 10px;
            text-decoration: none;
            color: #ffffff;
            background-color: #ca9c6a;
            padding: 10px 0;
            width: 200px;
            border-radius: 5px;
            transition: background-color 0.3s, transform 0.3s;
            font-weight: 700;
            font-size: 16px;
            height: 40px;
        }

        .contact-info a:hover {
            background-color: #b68b4e;
            transform: scale(1.05);
        }

        .contact-info a i {
            margin-right: 8px;
            font-size: 2.25em;
        }

        .address-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            margin-top: 20px;
            text-align: left;
        }

        .address-text {
            margin-right: 10px;
            color: #061d2d;
        }

        .openhour-text {
            padding-left: 10px;
            border-left: 2px solid #ccc;
            margin-left: 10px;
        }

        .strong-message {
            font-size: 1.5em;
            font-weight: bold;
            color: #ca9c6a;
            margin: 20px 0;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }


        /* Google Map Styles */
        .map-container {
            width: 100%;
            height: 400px;
            margin-top: 20px;
        }

        iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        html[lang="zh"] {
            .contacthead {
                font-family: 'Noto Sans TC', sans-serif;
                letter-spacing: 10px;
            }

            .subtext {
                font-family: 'Noto Sans TC', sans-serif;
            }

            .contact-info a,
            .contact-info p {
                font-family: 'Noto Sans TC', sans-serif;
                letter-spacing: 1px;
            }

            .contact-h2 {
                font-family: 'Noto Sans TC', sans-serif;
            }

            .address-text,
            .openhour-text {
                font-family: 'Noto Sans TC', sans-serif;
            }

            .strong-message {
                font-family: 'Noto Sans TC', sans-serif;
                letter-spacing: .3ch;
            }

        }

        html[lang="en"] {
            .contacthead {
                font-family: 'Great Vibes', cursive;
                font-size: 3rem;
            }

            .subtext {
                font-family: 'Lato', sans-serif;
            }

            .contact-info a,
            .contact-info p {
                font-family: 'Lato', sans-serif;
                letter-spacing: 1px;
            }

            .address-text,
            .openhour-text {
                font-family: 'Lato', sans-serif;

            }

            .contact-h2 {
                font-family: 'Lato', sans-serif;
            }

            .strong-message {
                font-family: 'Lato', sans-serif;
                letter-spacing: 0;
            }
        }

        @media (max-width: 768px) {

            .top-img-banner {
                height: 40vh;
            }

            .contacthead {
                font-size: 5vh;
            }

            .address-text,
            .openhour-text {
                font-size: 1rem;
            }

        }