
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        /* Orange Header */
        .appointment-header {
            background: linear-gradient(135deg, #ed1574 0%, #b6145b 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .appointment-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://picsum.photos/seed/healthcare/1600/800.jpg');
            opacity: 0.1;
            background-size: cover;
            background-position: center;
        }
        
        .appointment-header-content {
            position: relative;
            z-index: 2;
        }
        
        .appointment-header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .appointment-header p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Main Content Container */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Section Styling */
        section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #1a1a1a;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #ed1574;
        }
        
        /* Appointment Form */
        .appointment-form-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .form-group {
            flex: 1;
            min-width: 250px;
            padding: 0 15px;
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1a1a1a;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #ed1574;
            box-shadow: 0 0 0 3px rgba(33, 108, 134, 0.1);
        }
        
        .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
        }
        
        .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        
        .btn {
            display: inline-block;
            background-color: #ed1574;
            color: white;
            padding: 14px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            margin-top: 20px;
        }
        
        .btn:hover {
            background-color: #b6145b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(33, 108, 13, 0.3);
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            cursor: pointer;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card.selected {
            border: 3px solid #ed1574;
        }
        
        .service-card.selected .service-icon {
            background-color: #ed1574;
            color: white;
        }
        
        .service-icon {
            background-color: #f0f0f0;
            color: #ed1574;
            font-size: 2.5rem;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .service-content {
            padding: 20px;
            text-align: center;
        }
        
        .service-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #1a1a1a;
        }
        
        .service-content p {
            color: #555;
            font-size: 0.95rem;
        }
        
        /* Doctors Section */
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .doctor-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .doctor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .doctor-card.selected {
            border: 3px solid #ed1574;
        }
        
        .doctor-photo {
            height: 200px;
            overflow: hidden;
        }
        
        .doctor-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .doctor-card:hover .doctor-photo img {
            transform: scale(1.1);
        }
        
        .doctor-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .doctor-info h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: #1a1a1a;
        }
        
        .doctor-info p {
            color: #ed1574;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .doctor-specialty {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .doctor-bio {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .select-doctor-btn {
            background-color: #f0f0f0;
            color: #1a1a1a;
            padding: 10px 20px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            width: 100%;
        }
        
        .doctor-card.selected .select-doctor-btn {
            background-color: #ed1574;
            color: white;
        }
        
        /* Testimonials */
        .testimonials-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            text-align: center;
            padding: 20px;
        }
        
        .testimonial-icon {
            font-size: 3rem;
            color: rgba(33, 108, 134, 0.2);
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text::before {
           
            font-size: 5rem;
            position: absolute;
            top: -30px;
            left: -10px;
            color: rgba(33, 108, 134, 0.1);
            font-family: Georgia, serif;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #1a1a1a;
        }
        
        .testimonial-role {
            color: #ed1574;
            font-size: 0.9rem;
        }
        
        /* Contact Info */
        .contact-info-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .contact-card {
            display: flex;
            align-items: flex-start;
        }
        
        .contact-icon {
            font-size: 2rem;
            color: #ed1574;
            margin-right: 20px;
            min-width: 40px;
        }
        
        .contact-details h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #1a1a1a;
        }
        
        .contact-details p, .contact-details a {
            color: #555;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }
        
        .contact-details a:hover {
            color: #ed1574;
        }
        
        /* Emergency Section */
        .emergency-container {
            background-color: #1a1a1a;
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .emergency-container h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #ed1574;
        }
        
        .emergency-container p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .emergency-btn {
            background-color: #ed1574;
            color: white;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .emergency-btn:hover {
            background-color: #b6145b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(33, 108, 134, 0.3);
        }
        
        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #ed1574;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #ed1574;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: #ed1574;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .form-row {
                flex-direction: column;
            }
            
            .form-group {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .appointment-header h1 {
                font-size: 2.8rem;
            }
            
            .appointment-header p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .appointment-form-container,
            .testimonials-container,
            .contact-info-container {
                padding: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .appointment-header {
                padding: 60px 0 40px;
            }
            
            .appointment-header h1 {
                font-size: 2.2rem;
            }
            
            .appointment-form-container,
            .testimonials-container,
            .contact-info-container {
                padding: 20px;
            }
            
            .btn {
                width: 100%;
            }
        }
   