.request-module {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Mulish', sans-serif;
    color: #333;
}

.request-module h4 {
    color: #0056b3;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    font-family: 'Mulish', sans-serif;
    font-size:1.4rem;
}

.request-module h3 {
    color: #0056b3;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
    font-family: 'Mulish', sans-serif;
    font-size:1.2rem;
}

.request-module .grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 1rem;
}

.request-module .grid-col {
    flex: 1;
    min-width: 200px;
}

.request-module .grid-col-2 {
    flex: 2;
    min-width: 300px;
}

.request-module .form-group {
    margin-bottom: 1rem;
}

.request-module label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.request-module input[type="text"],
.request-module input[type="email"],
.request-module input[type="tel"],
.request-module select,
.request-module textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.request-module textarea {
    resize: vertical;
}

.request-module .checkbox-control {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.request-module .checkbox-control input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.request-module .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.request-module .btn-primary {
    background-color: #0056b3;
    color: #fff;
    border: none;
}

.request-module .btn-primary:hover {
    background-color: #004494;
}

.request-module .btn-secondary-outline {
    background: transparent;
    border: 2px solid #0056b3;
    color: #0056b3;
    font-size:1rem;
    padding: 0.5rem 1rem;
}

.request-module .btn-secondary-outline:hover {
    background: #0056b3;
    color: #fff;
}

.request-module .room-data {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.request-module .remove-room {
    color: #dc3545;
    text-decoration: underline;
    font-size: 0.875rem;
    margin-top: 10px;
    display: inline-block;
}

.request-module hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 2rem 0;
}

.request-module .disclaimer {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.request-module .disclaimer input {
    margin-right: 10px;
    margin-top: 4px;
}

.request-module .hidden {
    display: none;
}

.request-module .alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    line-height: 1.5;
}

.request-module .alert.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.request-module .submit-loader {
    margin-right: 10px;
}

.request-module .animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width: 600px) {
    .request-module .grid-col, .request-module .grid-col-2 {
        flex: 1 0 100%;
    }
}
