/* CSS PASTE HERE */
        
        /* GLOBAL SETTINGS */
        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #ffffff;
        }

        .appointment-section {
            padding: 80px 0;
            /* Very subtle purple tint background */
            background: linear-gradient(to bottom, #fcfafc, #f5f0f5);
        }

        .appoint-container {
            display: flex;
            max-width: 1200px;
            margin: auto;
            align-items: center; /* Aligns image and form vertically */
            justify-content: space-between;
            gap: 60px;
            padding: 0 20px;
        }

        /* LEFT IMAGE */
        .appoint-left {
            flex: 1;
            position: relative;
        }

        .appoint-img {
            width: 100%;
            border-radius: 15px;
            /* Premium Shadow */
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border: 1px solid #eee;
            transition: transform 0.3s ease;
        }

        .appoint-left:hover .appoint-img {
            transform: scale(1.02);
        }

        /* FORM AREA */
        .appoint-right {
            flex: 1;
            background: #ffffff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(128, 0, 128, 0.08); /* Soft Purple Shadow */
            border-top: 5px solid #800080; /* Purple Accent Top */
        }

        .appoint-title {
            font-size: 36px;
            font-weight: 700;
            color: #800080; /* Primary Purple */
            margin-bottom: 10px;
            text-transform: capitalize;
            position: relative;
        }

        /* Decorative Line */
        .appoint-title::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #800080, #000000);
            margin-top: 10px;
            margin-bottom: 30px;
            border-radius: 2px;
        }

        .appoint-form .form-group {
            margin-bottom: 20px;
        }

        .appoint-form label {
            font-size: 15px;
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
            color: #333; /* Dark Grey */
        }

        /* INPUT FIELDS */
        .appoint-form input,
        .appoint-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            background: #fdfdfd;
            font-size: 15px;
            color: #000;
            box-sizing: border-box; /* Ensures padding doesn't break layout */
            transition: all 0.3s ease;
            font-family: inherit;
        }

        /* Focus Effect - The Premium Feel */
        .appoint-form input:focus,
        .appoint-form textarea:focus {
            outline: none;
            border-color: #800080;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(128, 0, 128, 0.1); /* Glow effect */
        }

        .appoint-form textarea {
            resize: vertical; /* Allow vertical resizing only */
        }

        /* BUTTON */
        .appoint-btn {
            margin-top: 10px;
            width: 100%;
            background: linear-gradient(135deg, #800080 0%, #4b004b 100%);
            color: #fff;
            padding: 16px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(128, 0, 128, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .appoint-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(128, 0, 128, 0.4);
            background: linear-gradient(135deg, #990099 0%, #600060 100%);
        }

        /* RESPONSIVE STYLES */

        /* Tablet (max 1024px) */
        @media (max-width: 1024px) {
            .appoint-container {
                gap: 40px;
                padding: 0 20px;
            }
            .appoint-title {
                font-size: 30px;
            }
        }

        /* Mobile (max 768px) */
        @media (max-width: 768px) {
            .appointment-section {
                padding: 50px 0;
            }
            
            .appoint-container {
                flex-direction: column; /* Stack vertically */
                gap: 30px;
            }

            .appoint-right {
                width: 100%;
                padding: 25px;
                box-sizing: border-box;
            }

            .appoint-img {
                height: 250px;
                object-fit: cover; /* Ensures image looks good short */
            }

            .appoint-title {
                font-size: 26px;
                text-align: center;
            }

            .appoint-title::after {
                margin: 10px auto 25px auto; /* Center underline */
            }
        }

        /* Small Mobile (max 480px) */
        @media (max-width: 480px) {
            .appoint-right {
                padding: 20px;
            }
            
            .appoint-btn {
                font-size: 16px;
                padding: 14px;
            }
            
            .appoint-form input, 
            .appoint-form textarea {
                padding: 12px;
                font-size: 14px;
            }
        }