/* Base Section Background */
.custom-contact-section {
    background-color: #b5e2f1; /* Light blue from image */
    padding: 80px 0;
    font-family: inherit;
}

/* --- Left Side: Form Card --- */
.custom-form-card {
    background-color: #14485e; /* Dark Teal */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-form-card .form-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5px;
}

.custom-form-card .form-subtitle {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.9;
}

.custom-appoint-form .form-group {
    margin-bottom: 20px;
}

.custom-appoint-form input,
.custom-appoint-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    outline: none;
    border: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.custom-appoint-form textarea {
    resize: none;
}

.custom-appoint-form .appoint-btn {
    height: 55px;
    border-radius: 30px; /* Pill shape */
    color: #ffffff;
    text-align: center;
    background-color: #FBB12F; /* Yellow/Orange */
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
}

.custom-appoint-form .appoint-btn:hover {
    background-color: #e09e25;
}

/* --- Right Side: Info & Layout --- */
.custom-info-wrap {
    padding-left: 20px;
}

.custom-info-wrap .sub-title {
    color: #164657; /* Dark teal matching form bg */
    font-weight: 700;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.custom-info-wrap .main-title {
    color: #27215E; /* Deep purple/blue */
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.custom-info-wrap .desc-text {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* The Data "Schedule" Table mapping */
.info-list-card {
    background-color: #cbebf5;
    border-radius: 12px;
    padding: 25px 0px;
}

.info-list-card .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #c3dfee;
    margin-bottom: 10px;
}

.info-list-card .info-row:last-child {
    border-bottom: none;
}

.info-list-card .info-label {
    font-weight: 700;
    color: #111111;
    font-size: 16px;
    width: 40%;
}

.info-list-card .info-value {
    font-weight: 600;
    color: #333333;
    font-size: 15px;
    text-align: right;
    width: 60%;
    word-break: break-word;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .custom-info-wrap {
        padding-left: 0;
        margin-top: 40px;
    }
    .custom-info-wrap .main-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .info-list-card .info-row {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 5px;
    }
    .info-list-card .info-label,
    .info-list-card .info-value {
        width: 100%;
        text-align: left;
    }
    .custom-form-card {
        padding: 30px 20px;
    }
}