/* Page banner */
.page-banner {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('images/contact-banner.jpg'); /* Using contact banner for now */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 60px;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.page-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Consultation form styling - similar to contact form but can be adjusted */
.consultation-container {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.consultation-form-card {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    max-width: 700px;
    width: 100%;
}

.consultation-form-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: 10px;
    text-align: center;
}
