:root {
            --primary-blue: #0b3168;
            --darker-blue: #061c3f;
            --accent-red: #e3242b;
            --accent-yellow: #ffc107;
            --light-bg: #f8f9fa;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Prompt", sans-serif;
            color: #333;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* Navbar สไตล์เดียวกับหน้าที่เหลือ */
        

        

        

        

        

        

        

        

        /* Page Layout Styles ของหน้าเกี่ยวกับเรา */
        .page-header {
            background-color: var(--light-bg);
            background-size: cover;
            background-position: center 50%;
            background-repeat: no-repeat;
            padding: 5.5rem 0;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            border-bottom: 5px solid var(--accent-yellow);
            position: relative;
        }

        .page-header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0.9) 30%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }

        .text-primary-custom { color: var(--primary-blue); }
        .v-card { border-radius: 12px; transition: transform 0.3s ease; }
        .v-card:hover { transform: translateY(-5px); }
        .icon-box {
            width: 60px; height: 60px; background-color: #e6f0ff; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
        }
        .icon-img {
            width: 220px; height: 220px; object-fit: cover; border-radius: 10px;
            margin-bottom: 10px; border: 2px solid #ddd; padding: 5px; background-color: #fff;
            transition: transform 0.3s ease;
        }
        .icon-img:hover { transform: scale(1.05); border-color: var(--primary-blue); }
        
    

        /* ปรับเฉพาะส่วนเนื้อหาหน้าเกี่ยวกับเรา */
        .page-header + section.py-5 {
            position: relative;
            padding: 5rem 0 !important;
            overflow: hidden;
            background:
                radial-gradient(circle at 8% 18%, rgba(11, 49, 104, 0.06) 0 130px, transparent 131px),
                radial-gradient(circle at 92% 82%, rgba(255, 193, 7, 0.08) 0 145px, transparent 146px),
                linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }

        .page-header + section.py-5::before {
            content: "";
            position: absolute;
            top: 48px;
            left: 50%;
            width: 76px;
            height: 5px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
            transform: translateX(-50%);
        }

        .page-header + section.py-5 .container {
            position: relative;
            z-index: 1;
            max-width: 1220px;
        }

        .page-header + section.py-5 .row {
            padding: 28px;
            margin-bottom: 0 !important;
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid #e8edf3;
            border-radius: 22px;
            box-shadow: 0 16px 40px rgba(6, 28, 63, 0.09);
        }

        .page-header + section.py-5 h3 {
            position: relative;
            display: inline-block;
            margin-bottom: 1.25rem !important;
            font-size: 1.85rem;
        }

        .page-header + section.py-5 h3::after {
            content: "";
            display: block;
            width: 54px;
            height: 4px;
            margin-top: 10px;
            border-radius: 999px;
            background: var(--accent-yellow);
        }

        .page-header + section.py-5 p {
            margin-bottom: 1rem;
            line-height: 1.95 !important;
        }

        .page-header + section.py-5 img {
            width: 100%;
            height: 100%;
            min-height: 335px;
            object-fit: cover;
            border: 7px solid #fff;
            border-radius: 18px !important;
            box-shadow: 0 14px 30px rgba(6, 28, 63, 0.16) !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .page-header + section.py-5 img:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 38px rgba(6, 28, 63, 0.2) !important;
        }

        /* วิสัยทัศน์ พันธกิจ และจุดเด่น */
        .page-header + section.py-5 + section.py-5 {
            position: relative;
            padding: 4.5rem 0 !important;
            background:
                radial-gradient(circle at 4% 50%, rgba(255,255,255,0.05) 0 115px, transparent 116px),
                radial-gradient(circle at 96% 48%, rgba(255,193,7,0.08) 0 125px, transparent 126px),
                linear-gradient(135deg, #082858 0%, #0b3b7d 100%) !important;
            overflow: hidden;
        }

        .page-header + section.py-5 + section.py-5 .container {
            position: relative;
            z-index: 1;
            max-width: 1220px;
        }

        .v-card {
            position: relative;
            overflow: hidden;
            padding: 2rem !important;
            border: 1px solid rgba(255,255,255,0.8) !important;
            border-radius: 18px;
            box-shadow: 0 14px 30px rgba(0,0,0,0.14) !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .v-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-blue), #2879e5 74%, var(--accent-yellow));
        }

        .v-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
        }

        .icon-box {
            width: 66px;
            height: 66px;
            margin-bottom: 1.1rem !important;
            background: linear-gradient(135deg, #e9f2ff, #f8fbff);
            border: 1px solid #d7e6fb;
            box-shadow: 0 7px 16px rgba(11, 49, 104, 0.1);
        }

        .v-card h5 {
            font-size: 1.25rem;
            margin-bottom: 0.85rem;
        }

        .v-card p,
        .v-card ul {
            line-height: 1.85 !important;
            margin-bottom: 0;
        }

        .v-card ul li {
            padding: 4px 0;
        }

        /* เครื่องจักรของเรา */
        .page-header + section.py-5 + section.py-5 + section.py-5 {
            position: relative;
            padding: 5rem 0 !important;
            background:
                radial-gradient(circle at 10% 15%, rgba(11, 49, 104, 0.05) 0 120px, transparent 121px),
                radial-gradient(circle at 90% 85%, rgba(255, 193, 7, 0.07) 0 140px, transparent 141px),
                #f8fafc;
            overflow: hidden;
        }

        .page-header + section.py-5 + section.py-5 + section.py-5 .container {
            position: relative;
            z-index: 1;
            max-width: 1220px;
        }

        .page-header + section.py-5 + section.py-5 + section.py-5 h3 {
            position: relative;
            margin-bottom: 3rem !important;
            font-size: 1.9rem;
        }

        .page-header + section.py-5 + section.py-5 + section.py-5 h3::after {
            content: "";
            display: block;
            width: 72px;
            height: 5px;
            margin: 12px auto 0;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
        }

        .page-header + section.py-5 + section.py-5 + section.py-5 .col {
            padding: 22px 18px;
            background: #fff;
            border: 1px solid #e7ebf0;
            border-radius: 17px;
            box-shadow: 0 10px 26px rgba(6, 28, 63, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .page-header + section.py-5 + section.py-5 + section.py-5 .col:hover {
            transform: translateY(-7px);
            box-shadow: 0 17px 34px rgba(6, 28, 63, 0.14);
        }

        .icon-img {
            width: 100%;
            max-width: 235px;
            height: 190px;
            margin-bottom: 14px;
            padding: 0;
            border: 0;
            border-radius: 13px;
            object-fit: cover;
            box-shadow: 0 8px 20px rgba(6, 28, 63, 0.12);
        }

        .icon-img:hover {
            transform: scale(1.025);
            border-color: transparent;
        }

        .page-header + section.py-5 + section.py-5 + section.py-5 h5 {
            color: var(--primary-blue);
            font-size: 1.15rem;
        }

        .page-header + section.py-5 + section.py-5 + section.py-5 p {
            line-height: 1.7;
            margin-bottom: 0;
        }

        @media (max-width: 991.98px) {
            .page-header + section.py-5 .row {
                padding: 22px;
            }

            .page-header + section.py-5 img {
                min-height: 320px;
            }

            .icon-img {
                height: 175px;
            }
        }

        @media (max-width: 767.98px) {
            .page-header + section.py-5,
            .page-header + section.py-5 + section.py-5,
            .page-header + section.py-5 + section.py-5 + section.py-5 {
                padding: 3.5rem 0 !important;
            }

            .page-header + section.py-5 .row {
                padding: 18px;
                border-radius: 17px;
            }

            .page-header + section.py-5 img {
                height: 300px;
                min-height: 0;
            }

            .icon-img {
                height: 165px;
            }
        }

        @media (max-width: 575.98px) {
            .page-header + section.py-5 .row {
                padding: 15px;
            }

            .page-header + section.py-5 h3,
            .page-header + section.py-5 + section.py-5 + section.py-5 h3 {
                font-size: 1.55rem;
            }

            .page-header + section.py-5 img {
                height: 245px;
                border-width: 5px;
            }

            .v-card {
                padding: 1.5rem !important;
            }

            .icon-img {
                height: 145px;
            }

            .page-header + section.py-5 + section.py-5 + section.py-5 .col {
                padding: 14px 10px;
            }
        }
