  * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html,
        body {
            height: 100%;
            width: 100%;
            font-family: Arial, sans-serif;
        }

        body {
            min-height: 100vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .container {
            flex: 1 0 auto;
            width: 100%;
            max-width: 900px;
            margin: 40px auto 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .overlay {
            background: rgba(0, 0, 0, 0.5);
            padding: 20px 40px;
            border-radius: 10px;
            color: white;
            text-align: center;
        }

        .footer-img {
            flex-shrink: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            margin: 0 0 24px 0;
        }

        .main-img {
            width: 100%;
            max-width: 700px;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.05);
            display: block;
            height: auto;
        }

        h1 {
            font-size: 48px;
            color: #ffd700;
            margin-bottom: 10px;
        }

        p {
            font-size: 24px;
        }

        @media (max-width: 768px) {
            .overlay {
                padding: 12px 4vw;
            }

            .main-img {
                max-width: 98vw;
            }

            h1 {
                font-size: 28px;
            }

            p {
                font-size: 16px;
            }

            .container {
                gap: 14px;
                margin-top: 10px;
            }

            .footer-img {
                margin-bottom: 8px;
            }
        }

        .icon-row {
            display: flex;
            justify-content: center;
            /* Căn giữa ngang */
            align-items: center;
            /* Căn giữa dọc nếu cần */
            gap: 18px;
            /* Khoảng cách giữa các ảnh */
            margin: 20px 0;
        }

        .icon-row img {
            width: 100%;
            height: auto;
            display: block;
        }

        .icon-row img:hover {
            transform: scale(1.08);
        }

        @media (max-width: 700px) {
            .icon-row {
                gap: 14px;
            }

            .icon-row img {
                width: 100px;
            }
        }

        .image-wrapper {
            position: relative;
            /* Thiết lập context cho vị trí tuyệt đối bên trong */
            display: inline-block;
            /* Giữ kích thước theo nội dung ảnh */
        }

        .image-wrapper .icon-row {
            position: absolute;
            /* Cho phép chồng lên ảnh */
            top: 90%;
            /* Đưa dòng icon xuống giữa theo chiều dọc */
            left: 50%;
            /* Đưa dòng icon vào giữa theo chiều ngang */
            transform: translate(-50%, -50%);
            /* Căn giữa thực sự */
            margin: 0;
            /* Hủy margin mặc định để không bị lệch */
            z-index: 2;
            /* Đảm bảo nằm trên ảnh */
        }

        /* Cho wrapper và ảnh nền full width trên desktop */
        .image-wrapper {
            position: relative;
            width: 100%;
            /* chiếm hết chiều ngang */
        }

        .image-wrapper>img {
            width: 100%;
            /* ép ảnh con luôn đầy */
            height: auto;
            display: block;
        }

        /* Giữ responsive cho mobile (nếu muốn giới hạn max-width) */
        @media (max-width: 768px) {
            .image-wrapper {
                width: auto;
                /* hoặc max-width: 98vw tuỳ ý */
            }

            .image-wrapper>img {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {

            /* Ngăn scroll ngang và khoảng trắng dư */
            html,
            body {
                overflow-x: hidden;
            }

            /* Ép wrapper và ảnh full viewport width */
            .image-wrapper {
                width: 100vw !important;
                max-width: 100vw !important;
                margin: 0 auto;
                /* chắc chắn không có margin bên */
            }

            .image-wrapper>img {
                width: 100vw !important;
                max-width: 100vw !important;
                display: block;
            }
        }

        /* --- CSS: Hiệu ứng rung mạnh lên/xuống --- */
        @keyframes shake-vertical {
            0% {
                transform: translateY(0);
            }

            25% {
                transform: translateY(-6px);
            }

            50% {
                transform: translateY(0);
            }

            75% {
                transform: translateY(6px);
            }

            100% {
                transform: translateY(0);
            }
        }

        .icon-row img {
            /* Thay animation cũ bằng animation mới */
            animation: shake-vertical 0.6s ease-in-out infinite;
            /* Giữ con trỏ pointer và z-index nếu có */
            cursor: pointer;
            display: block;
        }

        /* nút gọi điện cố định góc phải dưới */
        .call-button {
            position: fixed;
            bottom: 20px;
            /* cách đáy 20px */
            right: 20px;
            /* cách phải 20px */
            width: 70px;
            /* kích thước ô chứa */
            height: 106px;
          
            /* thành hình tròn */
            
            /* màu nền vàng nổi bật */
            
            
            z-index: 9999;
            /* luôn ở trên cùng */
            transition: transform .2s ease-in-out;
        }

        .call-button img {
            width: 100%;
            height: auto;
            display: block;
        }

        .call-button:hover {
            transform: scale(1.1);
        }
        /* Keyframes rung cho nút gọi */
@keyframes shake-phone {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-8px); }
  50%  { transform: translateY(0); }
  75%  { transform: translateY(8px); }
  100% { transform: translateY(0); }
}

/* Cho nút gọi rung liên tục */
.call-button {
  /* các rule khác giữ nguyên */
  animation: shake-phone 0.6s ease-in-out infinite;
}