﻿ <style type="text/css">
        .appointment-section {
            padding: 50px 0;
            background-color: #f8f9fa;
        }
        .appointment-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .appointment-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .form-column {
            flex: 1;
            min-width: 300px;
            padding: 40px;
        }
        .image-column {
            flex: 1;
            min-width: 300px;
            position: relative;
            overflow: hidden;
        }
        .image-column img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 500px;
        }
        .appointment-title {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 32px;
            font-weight: 700;
        }
        .appointment-subtitle {
            color: #7f8c8d;
            margin-bottom: 30px;
            font-size: 16px;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-label {
            display: inline-block;
            margin-bottom: 8px;
            color: #34495e;
            font-weight: 600;
            font-size: 14px;
        }
        .required {
            color: #e74c3c;
            margin-left: 3px;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            font-size: 14px;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }
        .form-control:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }
        .btn-submit {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            width: 100%;
            margin-top: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }
        .message-label {
            display: block;
            text-align: center;
            margin-top: 20px;
            font-weight: 600;
            font-size: 15px;
        }
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 30px;
            color: white;
        }
        .overlay-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .overlay-text {
            font-size: 16px;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .appointment-row {
                flex-direction: column;
            }
            .form-column {
                padding: 30px 25px;
            }
            .image-column {
                order: -1;
            }
            .image-column img {
                min-height: 300px;
            }
            .appointment-title {
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            .appointment-section {
                padding: 30px 0;
            }
            .form-column {
                padding: 25px 20px;
            }
            .appointment-title {
                font-size: 24px;
            }
            .appointment-subtitle {
                font-size: 14px;
            }
            .form-group {
                margin-bottom: 20px;
            }
        }
    </style>