/* Modern Appointment Section Styles - V2 */
.appointment-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f2 100%);
    padding: 80px 0;
}

.appointment-section .container {
    max-width: 960px;
}

.appointment-section .inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 77, 64, 0.08);
    transition: all 0.3s ease;
}

.appointment-section .inner-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 77, 64, 0.12);
}

.appointment-section .text-content {
    flex: 1;
    padding-right: 40px;
    text-align: left;
}

.appointment-section .text-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #004d40;
    margin-bottom: 10px;
}

.appointment-section .text-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.appointment-btn {
    background-color: #00796b;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 121, 107, 0.2);
    white-space: nowrap;
}

.appointment-btn:hover {
    background-color: #004d40;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 77, 64, 0.3);
}

.appointment-btn i {
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .appointment-section .inner-wrapper {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    .appointment-section .text-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
} 