        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(90deg, rgba(26, 54, 66, 0.95) 0%, rgba(26, 54, 66, 0.7) 50%, transparent 100%),
                url('https://images.unsplash.com/photo-1594824476967-48c8b964273f?w=1600&q=80');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
        }

        .hero-section h1 {
            font-size: 48px;
            font-weight: 300;
            letter-spacing: 2px;
            margin: 0;
        }

        .breadcrumb-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 10px 30px;
            border-radius: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .breadcrumb-nav a {
            color: #17a2b8;
            text-decoration: none;
            font-size: 14px;
            margin-right: 5px;
        }

        .breadcrumb-nav span {
            color: #666;
            font-size: 14px;
        }

        .breadcrumb-nav i {
            color: #17a2b8;
            margin-right: 8px;
        }

        /* Main Content */
        .content-wrapper {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .main-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
        }

        /* Left Sidebar */
        .sidebar {
            background: white;
        }

        .sidebar h2 {
            font-size: 24px;
            font-weight: 400;
            color: #1a3642;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .emergency-text {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .emergency-number {
            font-weight: 700;
            color: #1a3642;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background: #17a2b8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 18px;
        }

        .contact-details h6 {
            font-size: 15px;
            font-weight: 400;
            margin-bottom: 5px;
            color: #1a3642;
            letter-spacing: 0.5px;
        }

        .contact-details p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        .opening-hours {
            margin-top: 50px;
        }

        .opening-hours h3 {
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 25px;
            color: #1a3642;
            letter-spacing: 1px;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #e8e8e8;
            font-size: 14px;
        }

        .hours-item:last-child {
            border-bottom: none;
        }

        .hours-day {
            color: #1a3642;
            font-weight: 400;
        }

        .hours-time {
            color: #666;
        }

        .contact-social-links {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .contact-social-links a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
        }

        .contact-social-links a:hover {
            background: #17a2b8;
            color: white;
        }

        /* Right Content */
        .content-section {
            background: white;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            font-size: 13px;
            color: #17a2b8;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .section-badge::before {
            content: '●';
            margin-right: 8px;
            font-size: 8px;
        }

        .content-section h1 {
            font-size: 36px;
            font-weight: 300;
            color: #1a3642;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .content-section>p {
            font-size: 14px;
            color: #666;
            margin-bottom: 35px;
            line-height: 1.8;
        }

        /* Form Styles */
        .appointment-form .form-label {
            display: none;
        }

        .appointment-form .form-control,
        .appointment-form .form-select {
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            padding: 14px 16px;
            font-size: 14px;
            color: #666;
            transition: all 0.3s;
            background: white;
        }

        .appointment-form .form-control::placeholder {
            color: #999;
        }

        .appointment-form .form-control:focus,
        .appointment-form .form-select:focus {
            border-color: #17a2b8;
            box-shadow: 0 0 0 0.15rem rgba(23, 162, 184, 0.1);
            outline: none;
        }

        .appointment-form textarea.form-control {
            min-height: 130px;
            resize: none;
        }

        .btn-book {
            background: #17a2b8;
            color: white;
            border: none;
            padding: 14px 40px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 4px;
            margin-top: 15px;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }

        .btn-book:hover {
            background: #138496;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(23, 162, 184, 0.3);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-section h1 {
                font-size: 36px;
            }

            .content-section h1 {
                font-size: 30px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                height: 250px;
            }

            .hero-section h1 {
                font-size: 32px;
            }

            .content-wrapper {
                margin: 40px auto;
            }

            .map-info-card {
                position: static;
                max-width: 100%;
                margin-bottom: 20px;
            }

            .map-container {
                height: 350px;
            }
        }