@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap");

        :root {
            --primary-blue: #0b3168;
            --darker-blue: #061c3f;
            /* เพิ่มสีนี้เพื่อให้ไล่เฉดได้ */
            --accent-red: #e3242b;
            --accent-yellow: #ffc107;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: "Prompt", sans-serif;
            color: #333;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Navbar สไตล์เหมือนหน้า about */
        

        

        

        

        

        

        

        

        /* Page Header (แบนเนอร์ส่วนบนของหน้า) */
        .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);
            position: relative;
            border-bottom: 5px solid var(--accent-yellow);
        }

        .page-header h1 {
            font-size: 2.5rem !important;
            color: var(--primary-blue);
        }

        .page-header .breadcrumb {
            font-size: 1.0rem !important;
        }

        .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;
        }

        .breadcrumb-item a:hover {
            color: var(--primary-blue) !important;
        }

        /* Contact Info */
        .text-primary-custom {
            color: var(--primary-blue);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: #e6f0ff;
            color: var(--primary-blue);
            font-size: 1.2rem;
        }

        /* Map */
        .map-container {
            width: 100%;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
            background-color: #e9ecef;
            /* Placeholder color */
            border: 1px solid #dee2e6;
        }

        /* Form Styles */
        .form-control {
            border: 1px solid #ced4da;
            border-radius: 6px;
            padding: 0.6rem 1rem;
        }

        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(11, 49, 104, 0.1);
        }

        .btn-custom-red {
            background-color: var(--accent-red);
            color: white;
            border: none;
            border-radius: 6px;
            transition: background-color 0.3s;
        }

        .btn-custom-red:hover {
            background-color: #c01d24;
            color: white;
        }

        /* Footer */
        .bg-dark-blue {
            background-color: #08244d;
        }

        footer p {
            font-size: 0.9rem;
        }
