/* === Certificate Query Page Specific Styles === */
        .query-page-wrapper {
            background-color: #fff;
            padding: 20px;
            margin-top: 30px;
            border: 1px solid #e7e7e7;
        }
        .query-title {
            display: inline-block;
            background-color: #2c3e50; /* Dark blue from image */
            color: white;
            padding: 10px 25px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 5px 5px 0 0;
            position: relative;
            top: 1px;
        }
        .query-container {
            border: 1px solid #e7e7e7;
            padding: 40px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .query-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 500px;
            margin: 0 auto;
        }
        .form-row {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            width: 100%;
        }
        .form-row label {
            width: 120px;
            text-align: right;
            padding-right: 15px;
            font-size: 15px;
        }
        .form-row label .required {
            color: red;
            margin-right: 5px;
        }
        .form-row input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 15px;
        }
        .form-buttons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .form-buttons button {
            padding: 10px 40px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            border: 1px solid;
        }
        .btn-query {
            background-color: #34495e;
            color: white;
            border-color: #34495e;
        }
        .btn-reset {
            background-color: white;
            color: #333;
            border-color: #ccc;
        }
        .query-contact {
            margin-top: 20px;
            font-size: 14px;
            color: #888;
        }
        .results-container {
            margin-top: 40px;
            border-top: 1px solid #e7e7e7;
            padding-top: 30px;
        }
        .result-item {
            border: 1px solid #e7e7e7;
            margin-bottom: 20px;
        }
        .result-table {
            width: 100%;
            border-collapse: collapse;
        }
        .result-table td {
            padding: 15px;
            border: 1px solid #e7e7e7;
            font-size: 15px;
        }
        .result-table .label {
            background-color: #f8f9fa;
            width: 15%;
            font-weight: bold;
            text-align: center;
        }
         .result-table .value {
            width: 35%;
        }