        /* Styling for the form */
        .form-container {
            max-width: 600px;
            margin: 40px auto;
            padding: 40px 30px;
            font-family: 'Open Sans', sans-serif;
            background: transparent;
            border-radius: 0;
            box-shadow: none;
        }

        /* Smaller gap between intro message and form */
        .form-container.form-intro {
            margin-bottom: 0;
            padding-bottom: 8px;
        }

        .form-container.form-intro h3 {
            margin-bottom: 0;
        }

        .form-container.form-intro + .form-container {
            margin-top: 12px;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        /* Custom file input styling */
        .custom-file-input {
            position: relative;
            display: flex;
            justify-content: center;
            width: 100%;
            margin-bottom: 20px;
        }

        .custom-file-input input[type="file"] {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .custom-file-input label {
            padding: 14px 20px;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            background: #ffffff;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 300px;
            box-shadow: none;
        }

        .custom-file-input label:hover {
            border-color: #f78021;
            background: #fff5f0;
            transform: none;
            box-shadow: none;
        }

        .custom-file-input.selected label {
            background: #d4edda;
            color: #155724;
            border-color: #28a745;
            box-shadow: none;
        }

        .custom-file-input.selected label::after {
            content: " ✓ File uploaded";
            font-size: 14px;
            color: #155724;
            margin-left: 10px;
        }

        /* Styling for the select dropdown */
        select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%27http%3A//www.w3.org/2000/svg%27 viewBox%3D%270 0 4 5%27%3E%3Cpath fill%3D%27%23f78021%27 d%3D%27M2 0L0 2h4z%27/%3E%3C/svg%3E');
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 14px;
            padding: 14px 18px;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            width: 100%;
            font-size: 16px;
            background-color: #fff;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        select:focus {
            border-color: #f78021;
            outline: none;
            box-shadow: none;
        }

        select:hover {
            border-color: #d0d0d0;
        }

        /* Description of the issue textarea styling */
        textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            font-size: 16px;
            color: #2c3e50;
            resize: vertical;
            min-height: 120px;
            font-family: 'Open Sans', sans-serif;
            background-color: #fff;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        textarea:focus {
            border-color: #f78021;
            outline: none;
            box-shadow: none;
        }

        textarea:hover {
            border-color: #d0d0d0;
        }

        /* Contact page: use main.css .button and .button-row; only fix spacing so they don’t overlap */
        .page-contact .contact-form-buttons.button-row .button {
            margin: 0 !important;
        }

        .page-contact .contact-form-buttons.button-row .button + .button {
            margin-top: 0 !important;
        }

        .captcha-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }

        .captcha-inputs {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }

        .captcha-inputs img {
            vertical-align: middle;
        }

        .captcha-refresh {
            color: #00a3fe;
            cursor: pointer;
            text-decoration: none;
        }

        .captcha-refresh:hover {
            text-decoration: underline;
        }

        .captcha-inputs input {
            flex: 1;
            min-width: 120px;
            padding: 10px 14px;
            border-radius: 8px;
            border: 2px solid #e0e0e0;
        }


  
        
