        * {
            box-sizing: border-box;
            font-family: 'Kanit', sans-serif;
        }

        body {
            margin: 0;
            padding: 0;
        }

        /* ========== HEADER SECTION ========== */
        .how-to-order-header-container {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            min-height: 400px;
            font-family: 'Kanit', sans-serif;
        }

        .how-to-order-header {
            flex: 1 1 100%;
            background: #fff;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }

        .how-to-order-header h5 {
            font-size: 12px;
            color: #888;
            letter-spacing: 1.5px;
            margin-top: 50px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .how-to-order-header h1 {
            font-size: 28px;
            line-height: 1.4;
            margin-bottom: 20px;
            font-weight: 700;
            word-break: break-word;
        }

        .highlight {
            background: #e61c1c;
            padding: 0 5px;
            color: #fff;
        }

        .how-to-order-header-img {
            flex: 1 1 100%;
            background: url('/assets/images/banners/hto-1.jpg') no-repeat center center;
            background-size: cover;
            height: 250px;
        }

        /* ========== CONTENT SECTION ========== */
        .how-to-order-container {
            max-width: 100%;
            margin: 30px auto 0;
            text-align: center;
            font-family: 'Inter', sans-serif;
            padding: 20px 16px;
            color: #333;
            background: linear-gradient(180deg, #ed1b24, #6b0005);
            overflow-x: hidden;
        }

        .how-to-order-container h2 {
            color: #000;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .how-to-order-container h3 {
            font-size: 26px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
        }

        /* ========== STEP GRID ========== */
        .how-to-order-steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .how-to-order-step-card {
            background: white;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
            position: relative;
            text-align: left;
            transition: 0.3s ease;
            overflow-wrap: break-word;
        }

        .how-to-order-step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .how-to-order-step-icon {
            font-size: 32px;
            color: #f44336;
            margin-bottom: 20px;
        }

        .how-to-order-step-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .how-to-order-step-desc {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
        }

        .how-to-order-step-number {
            font-size: 60px;
            font-weight: 900;
            color: rgba(244, 67, 54, 0.08);
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .how-to-order-step-wrapper {
            position: relative;
        }


        /* ========== PAYMENT ========== */
        .how-to-order-payment-wrapper {
            padding: 60px 20px 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .how-to-order-payment-header {
            text-align: left;
            margin-bottom: 50px;
            width: 100%;
            max-width: 1100px;
            padding: 0 20px;
        }

        .how-to-order-payment-header h3 {
            font-weight: 600;
            font-size: 22px;
            color: #e61c1c;
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        .how-to-order-payment-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: #111;
            position: relative;
            padding-bottom: 12px;
        }

        .how-to-order-payment-header h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 90px;
            height: 5px;
            background-color: #e61c1c;
            border-radius: 3px;
            box-shadow: 0 3px 10px rgba(230, 28, 28, 0.5);
        }

        .how-to-order-payment-header span {
            color: #e61c1c;
        }

        .how-to-order-payment-procedure {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            width: 100%;
            max-width: 1100px;
            padding: 0 20px 10px;
        }

        .how-to-order-payment-card {
            background: #ffffff;
            border-radius: 20px;
            flex: 1 1 300px;
            min-width: 250px;
            max-width: 320px;
            padding: 25px 20px 30px;
            box-shadow: 0 15px 30px rgba(230, 28, 28, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            text-align: center;
            border: 3px solid #e61c1c;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .how-to-order-payment-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 45px rgba(230, 28, 28, 0.3);
            border-color: #b71616;
        }

        .how-to-order-payment-icon {
            width: 100px;
            height: 100px;
            background: #fdecea;
            border-radius: 50%;
            box-shadow: 0 8px 20px rgba(230, 28, 28, 0.12);
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
            padding: 10px;
        }

        .how-to-order-payment-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .how-to-order-payment-icons {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 22px;
            margin-bottom: 20px;
        }

        .icon-detail {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .icon-name {
            font-size: 15px;
            font-weight: 600;
            color: #333;
        }

        .how-to-order-payment-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin: 0 0 14px;
            color: #b71c1c;
        }

        .how-to-order-payment-card p {
            color: #555;
            font-size: 16px;
            line-height: 1.6;
            margin: 0 0 20px;
        }

        .payment-button {
            padding: 10px 20px;
            background-color: #e61c1c;
            color: white;
            border: 2px solid #b71616;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 6px 12px rgba(230, 28, 28, 0.45);
            transition: all 0.3s ease;
        }

        .payment-button:hover {
            background-color: #b71616;
            box-shadow: 0 8px 20px rgba(183, 22, 22, 0.7);
            transform: translateY(-2px);
        }

        .payment-button-group {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: nowrap;
            margin-top: auto;
        }

        .payment-button-wrapper {
            margin-top: auto;
        }

        .social-main-container {
            display: flex;
            flex-direction: column;
            /* Stacks items vertically */
            align-items: center;
            gap: 40px;
            padding: 30px;
            background-color: #e6e6e6;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Title Section */
        .text-column {
            text-align: center;
        }

        .insee-text {
            font-weight: 700;
            font-size: 2.5rem;
            color: #e4002b;
            margin: 0;
        }

        .follow-us-text {
            font-size: 1.2rem;
            color: #000000;
            margin: 5px 0 0;
        }

        /* Social Icons Section */
        .social-social-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .social-icons-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .social-icon-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 5px;
        }

        .icon-link {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background-color: #e4002b;
            color: #ffffff;
            font-size: 2rem;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .icon-link:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }

        .icon-link.line:hover {
            background-color: #00C300;
        }

        .icon-link.facebook:hover {
            background-color: #1877F2;
        }

        .icon-link.email:hover {
            background-color: #EA4335;
        }

        .icon-link.phone:hover {
            background-color: #2c3e50;
        }

        .social-insee-text {
            font-weight: 600;
            font-size: 0.9rem;
            color: #e4002b;
            margin: 0;
        }

        .social-us-text {
            font-size: 0.75rem;
            color: #000000;
            margin: 0;
        }

        /* QR Code Section */
        .qr-code-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .qr-heading {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e4002b;
            margin: 0;
            text-align: center;
        }

        .qr-code-img {
            width: 120px;
            height: 120px;
            padding: 10px;
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .qr-code-img:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .qr-code-img img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }




        /* Mobile Styles (สำหรับหน้าจอ <= 768px) */
        @media (max-width: 480px) {

            .above-content {
                display: none;
            }

            .how-to-order-payment-header h2 {
                font-size: 22px;
            }

            .how-to-order-payment-card h3 {
                font-size: 18px;
            }

            .how-to-order-payment-card p {
                font-size: 14px;
            }

        }

        @media (min-width: 768px) {
            .how-to-order-steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .social-main-container {
                flex-direction: row;
                /* เปลี่ยนเป็นแนวนอนสำหรับหน้าจอที่กว้างขึ้น */
                justify-content: space-around;
                /* จัดช่องไฟระหว่างส่วนประกอบ */
                gap: 50px;
                padding: 50px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            .social-social-section {
                flex-direction: row;
                /* เปลี่ยนเป็นแนวนอนสำหรับส่วนของไอคอน */
                align-items: flex-start;
                gap: 40px;
            }

            .social-icons-container {
                gap: 20px;
            }

            .icon-link {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .insee-text {
                font-size: 2.5rem;
            }

            .follow-us-text {
                font-size: 1.2rem;
            }

            .qr-heading {
                font-size: 1.2rem;
            }

            .qr-code-img {
                width: 120px;
                height: 120px;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            }
        }

        @media (min-width: 1024px) {
            .how-to-order-steps-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .how-to-order-header {
                flex: 1 1 50%;
                padding: 60px;
            }

            .how-to-order-header-img {
                flex: 1 1 50%;
                height: auto;
                clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
            }

            .how-to-order-header-container {
                flex-wrap: nowrap;
                height: 60vh;
            }

            .how-to-order-header h1 {
                font-size: 36px;
            }
        }

        @media (min-width: 481px) and (max-width: 1024px) {
            .above-content {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .how-to-order-payment-header h2 {
                font-size: 28px;
            }

        }

        @media (max-width: 480px) {
            .how-to-order-payment-header {
                padding-left: 10px;
            }

            .how-to-order-payment-header h2 {
                font-size: 24px;
            }

        }