
        body {
            font-family: "Roboto", Sans-serif;
            background-color: #0D1214;
            margin: 0;
            padding: 0;
        }
        /* Header Styles */
        .header-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px 0px 40px;
            background-color: #0D1214;
        }
        .logo img {
            max-height: 80px;
        }
        .navigation ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
        }
        .navigation li {
            margin-left: 20px;
        }
        .navigation a {
            color: #EFE2B8;
            text-decoration: none;
            font-size: 18px;
            font-weight: 300;
            letter-spacing: 1px;
        }
        .navigation a:hover {
            text-decoration: underline;
        }
        /* Container Styles */
        .container {
            background-color: #0D1214;
            padding: 0px 40px 100px 40px;
            max-width: 800px;
            margin: auto;
            color: #FFFFFF;
        }
        h2 {
            text-align: center;
            color: #EFE2B8;
            font-size: 33px;
            font-weight: 300;
            margin-bottom: 0px;
        }
        .sampleRequestForm {
            margin-top: 50px;
        }
        label {
            display: block;
            margin-top: 15px;
            font-size: 18px;
            font-weight: 300;
            color: #FFFFFF;
            margin-bottom: 15px;
        }
        /* Input and Select Styles */
        input[type="text"],input[type="email"],input[type="tel"],input[type="date"],textarea,select {
            width: 100%;
            padding: 8px;
            font-size: 16px;
            font-family: "Roboto", Sans-serif;
            background-color: #f7f7f7;
            color: #000;
            border: none;
            border-radius: 4px;
            margin-bottom: 15px;
        }
        textarea {
            resize: vertical;
        }
        select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url('data:image/svg+xml; charset=US-ASCII,<svg xmlns%3D"http://www.w3.org/2000/svg" width%3D"10" height%3D"10" viewBox%3D"0 0 10 10"><polygon points%3D"0,0 10,0 5,5" fill%3D"%23666"/></svg>');
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 10px;
        }
        .consent label {
            display: inline;
            font-size: 16px;
            color: #FFFFFF;
        }
        .consent a {
            color: #EFE2B8;
        }
        button {
            margin-top: 20px;
            padding: 8px 25px;
            width: 100%;
            background-color: #EFE2B8;
            color: #0D1214;
            border: 1px solid #EFE2B8;
            border-radius: 5px;
            font-size: 15px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #d6c296;
        }
        /* Sample Selection Styles */
        .sample-group {
            margin-top: 15px;
        }
        .sample-group label {
            font-size: 18px;
            font-weight: 300;
            color: #FFFFFF;
            margin-bottom: 10px;
            display: block;
        }
        .sample-items {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .sample-item-cont {
            background-color: #1A1F21;
            width: calc(50% - 30px);
            padding: 10px;
            border-radius: 5px;
            color: #FFFFFF;
            font-size: 16px;
            position: relative;
        }
        .sample-item {
            background-color: #1A1F21;
            cursor: pointer;
            text-align: center;
        }
        .sample-item img {
            max-width: 100%;
            border-radius: 5px;
        }
        .sample-item input[type="checkbox"] {
            position: absolute;
            top: 10px;
            right: 10px;
            transform: scale(1.5);
        }
        .sample-item .product-name {
            margin-top: 10px;
            font-weight: 500;
            font-size: 18px;
            color: #EFE2B8;
        }
        .sample-item .product-description {
            margin-top: 5px;
            font-size: 14px;
            color: #CCCCCC;
        }
        /* Modal Styles */
        .modal {
            display: none;
            /* Hidden by default */
            position: fixed;
            z-index: 1001;
            /* On top of other elements */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            /* Enable scroll if needed */
            background-color: rgba(0, 0, 0, 0.8);
            /* Black w/ opacity */
        }
        .modal-content {
            position: relative;
            margin: auto;
            padding: 0;
            width: 80%;
            max-width: 750px;
            top: 50%;
            transform: translateY(-50%);
        }
        .modal-content img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        /* Close Button */
        .close {
            position: absolute;
            top: 10px;
            right: 25px;
            color: #ffffff;
            font-size: 35px;
            font-weight: bold;
            text-decoration: none;
        }
        .close:hover,.close:focus {
            color: #999;
            text-decoration: none;
            cursor: pointer;
        }
        /* Message Box Styles */
        .message-box-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(13, 18, 20, 0.8);
            /* Match your dark theme */
            z-index: 999;
            display: none;
        }
        .message-box {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1002;
            display: none;
            min-width: 300px;
            max-width: 90%;
        }
        .message-content {
            background-color: #1A1F21;
            padding: 20px;
            border-radius: 5px;
            text-align: center;
            color: #FFFFFF;
            border: 1px solid #EFE2B8;
        }
        #messageOkBtn {
            background-color: #EFE2B8;
            color: #0D1214;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 15px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 15px;
            transition: background-color 0.3s ease;
        }
        #messageOkBtn:hover {
            background-color: #d6c296;
        }
        /* Form Validation Styles */
        .error-message:not(.hidden) {
            color: #ff4444;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: block;
        }
        /* Sample Selection Styles */
        .select-button {
            position: relative;
            display: inline-block;
            cursor: pointer;
            margin-top: 10px;
        }
        .select-button input[type="checkbox"] {
            position: absolute;
            opacity: 0;
        }
        .select-button .button-text {
            display: block;
            background-color: #EFE2B8;
            color: #0D1214;
            padding: 8px 15px;
            border-radius: 5px;
            text-align: center;
            transition: background-color 0.3s ease;
        }
        .select-button input[type="checkbox"]:checked + .button-text {
            background-color: #f5d364;
        }
        #messageOkBtn {
            background-color: #EFE2B8;
            color: #0D1214;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 15px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: background-color 0.3s ease;
        }
        #messageOkBtn:hover {
            background-color: #d6c296;
        }
        /* Media query for mobile devices */
        @media screen and (max-width: 480px) {
            .message-box {
                width: 90%;
                min-width: auto;
            }
            .message-content {
                padding: 15px;
            }
        }
        /* Additional Styles for Adaptive Fields */
        .hidden {
            display: none;
        }
        label.inline {
            display: inline-block;
            margin-right: 15px;
            font-size: 16px;
        }
        .field-group {
            margin-bottom: 20px;
        }
        .field-group label {
            margin-top: 0;
        }
        @media screen and (max-width: 768px) {
            /* Container adjustments */
            .container {
                padding: 0px 15px 100px 15px;
            }
            /* Header adjustments */
            .header-container {
                padding: 10px;
            }
            .logo img {
                max-width: 180px;
                height: auto;
            }
            /* Form title */
            h2 {
                font-size: 1.5rem;
                line-height: 1.3;
                margin-bottom: 1rem;
            }
            /* Form fields */
            input[type="text"],input[type="email"],input[type="tel"],select,textarea {
                width: 100%;
                font-size: 16px;
                padding: 10px;
                margin-bottom: 12px;
                width: 100%;
                box-sizing: border-box;
            }
            /* Field groups */
            .field-group {
                margin-bottom: 15px;
            }
            /* Sample items adjustments */
            .sample-items {
                gap: 15px;
                padding: 10px;
            }
            .sample-item {
                margin-bottom: 15px;
                width: 100%;
                box-sizing: border-box;
            }
            .sample-item img {
                width: 100%;
                height: auto;
                max-width: 300px;
                margin: 0 auto;
                display: block;
            }
            .product-name {
                font-size: 1.1rem;
                margin: 8px 0;
            }
            .product-description {
                font-size: 0.9rem;
                line-height: 1.4;
            }
            /* Consent checkboxes */
            .consent {
                font-size: 0.9rem;
                margin: 12px 0;
                line-height: 1.4;
            }
            /* Business and Hotel fields */
            #businessFields,#hotelFields,#personFields,#addressFields {
                width: 100%;
                margin: 10px 0;
            }
            /* Modal adjustments */
            #imageModal .modal-content {
                width: 90%;
                max-width: none;
                margin: 20px auto;
            }
            #modalImage {
                width: 100%;
                height: auto;
            }
            .close {
                font-size: 24px;
                padding: 10px;
            }
        }
        @media screen and (max-width: 550px) {
            .sample-item-cont {
                width: calc(100% - 20px);
                padding: 20px;
            }
        }
        /* Extra small devices */
        @media screen and (max-width: 480px) {
            /* Further reduce padding */
            .container {
                padding: 10px;
            }
            /* Smaller title */
            h2 {
                font-size: 1.3rem;
            }
            /* Larger touch targets */
            select,input[type="radio"],input[type="checkbox"] {
                min-height: 44px;
            }
            /* Stack radio buttons vertically */
            .field-group label {
                display: block;
                margin: 8px 0;
            }
            /* Message box */
            #messageBox {
                width: 90%;
                left: 5%;
                margin-left: 0;
            }
            /* Adjust modal close button */
            .close {
                top: 10px;
                right: 10px;
                padding: 12px;
            }
        }
        .select-button {
            margin-top: 20px;
            padding: 8px 25px;
            background-color: #EFE2B8;
            color: #0D1214 !important;
            border: 1px solid #EFE2B8;
            border-radius: 5px;
            font-size: 15px !important;
            font-weight: 600 !important;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-align: center;
        }
        .select-button input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
        .select-button.selected {
            background-color: #f5d364;
            color: white;
        }
        /* Optional: Add hover effect */
        .select-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .pnlarge {
            background: #EFE2B8;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            text-transform: uppercase;
            font-size: 18px;
            font-weight: 600;
            color: black;
            margin-bottom: 5px;
        }
        .pdlarge {
            background: black;
            color: #EFE2B8;
            padding: 15px;
            border-radius: 10px;
            margin-top: 5px;
        }
        .status-check-section {
            margin: 0px 40px 0px 40px;
            text-align: center;
        }
        .status-check-toggle {
            width: auto;
            margin-top: 5px;
            background: none;
            border: none;
            color: #EFE2B8;
            cursor: pointer;
            font-size: 0.9em;
            padding: 5px 10px;
            transition: color 0.3s ease;
        }
        .status-check-toggle:hover {
            color: #0D1214;
        }
        .status-check-form {
            max-width: 400px;
            margin: 15px auto 0 auto;
            padding: 15px;
            background-color: #495053;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .status-check-content {
            display: flex;
            gap: 10px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        .status-input {
            padding: 8px 12px;
            border: 1px solid #EFE2B8;
            border-radius: 4px;
            background-color: #0D1214;
            color: #FFFFFF;
            width: 200px;
        }
        .status-button {
            margin-top: 0px;
            padding: 8px 15px;
            background-color: #EFE2B8;
            color: #0D1214;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .status-button:hover {
            background-color: #f5d364;
        }
        @media (max-width: 480px) {
            .status-check-content {
                flex-direction: column;
            }
            .status-input {
                width: 100%;
            }
        }

        .country-code-helper {
            margin-bottom: 0px;
        }

        .country-code-select {
            padding: 0.5rem;
            border: 1px solid #ccc;
            border-radius: 4px;
        }