/* Schedule Meeting Section Styles */
.schedule-meeting-section {
    padding: 5rem 15px;
    /* background-color: #f0f2f5; */
    margin-top: -130px;
}

.schedule-meeting-header {
    text-align: center;
    margin-bottom: 3rem;
}

.schedule-meeting-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 1rem;
}

.schedule-meeting-header p {
    font-size: 1.1rem;
    color: #5a6472;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.schedule-meeting-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.schedule-illustration {
    text-align: center;
}

.schedule-illustration img {
    max-width: 100%;
    height: auto;
}

.schedule-form-container {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.schedule-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.schedule-form .form-group {
    margin-bottom: 1.2rem; /* Reduced margin */
    margin-left: 1rem;

}

.schedule-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.schedule-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-left: 5px; /* Added left margin */
}

.schedule-form select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M10.7,3.3a1,1,0,0,0-1.4,0L6,6.6,2.7,3.3A1,1,0,0,0,1.3,4.7L5.3,8.7a1,1,0,0,0,1.4,0L10.7,4.7A1,1,0,0,0,10.7,3.3Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.schedule-form .form-control:focus {
    outline: none;
    border-color: #00305d;
    box-shadow: 0 0 0 3px rgba(0, 48, 93, 0.1);
}

.schedule-form .btn-submit {
    background-color: #00305d;
    color: #fff;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem; /* Added margin */
}

.schedule-form .btn-submit:hover {
    background-color: #004a8d;
}

@media (max-width: 900px) {
    .schedule-meeting-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .schedule-form-container {
        text-align: center;
    }
}
