 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c5aa0;
            --secondary-color: #4a90e2;
            --accent-color: #25d366;
            --text-dark: #333;
            --text-light: #666;
            --text-muted: #999;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --border-color: #e1e5e9;
            --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
            --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .emergency-notice {
            font-weight: 600;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Header */
        header {
            background: var(--white);
            padding: 15px 0;
            box-shadow: var(--shadow-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
            min-width: 250px;
        }

        .logo-image img {
            height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .logo-text h1 {
            font-size: 24px;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 2px;
        }

        .logo-text p {
            font-size: 12px;
            color: var(--text-light);
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        .phone-number {
            background: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            font-size: 16px;
            white-space: nowrap;
        }

        .phone-number:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .whatsapp-btn img {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            transition: var(--transition);
        }

        .whatsapp-btn:hover img {
            transform: scale(1.1);
        }

        /* Navigation */
        nav {
            background: #37464c;
            padding: 12px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }

        .nav-menu li a {
            text-decoration: none;
            color: white;
            font-weight: bolder;
            font-size: 1.2em;
            padding: 8px 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            white-space: nowrap;
        }

        .nav-menu li a:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-size: 18px;
            z-index: 1001;
        }

        /* Sidebar */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background: white;
            z-index: 1001;
            transition: var(--transition);
            box-shadow: var(--shadow-medium);
        }

        .sidebar.active {
            left: 0;
        }

        .sidebar-header {
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-dark);
        }

        .sidebar-menu {
            list-style: none;
            padding: 20px 0;
        }

        .sidebar-menu li {
            margin: 0;
            padding: 0;
        }

        .sidebar-menu li a {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: var(--text-dark);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .sidebar-menu li a:hover {
            background: var(--bg-light);
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero {
            background: url('images/pexels-tara-winstead-7722680.jpg') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 180px;
            text-align: center;
        }

        .btn-primary {
            background: white;
            color: var(--primary-color);
        }

        .btn-primary:hover {
            background: var(--bg-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .btn-secondary {
            background: rgb(20, 204, 20);
            color: white;
            border: 2px solid var(--accent-color);
        }

        .btn-secondary:hover {
            background: transparent;
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        /* Sections */
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary-color);
            margin-bottom: 15px;
            text-align: center;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--text-light);
            text-align: center;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
            cursor: pointer;
            background-color: #4a91e233;
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
            flex-grow: 1;
        }

        .service-features {
            list-style: none;
            text-align: left;
        }

        .service-features li {
            padding: 5px 0;
            color: var(--text-light);
            position: relative;
            padding-left: 20px;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        /* Process Section */
        .process {
            padding: 80px 0;
            background: white;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .process-step {
            text-align: center;
            background: var(--bg-light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .process-step-image {
            height: 200px;
            overflow: hidden;
            position: relative;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .process-step-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .process-step:hover .process-step-image img {
            transform: scale(1.05);
        }

        .step-number {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            z-index: 1;
        }

        .process-step-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .process-step-content h4 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .process-step-content p {
            color: var(--text-light);
            line-height: 1.6;
            flex-grow: 1;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.7;
            font-size: 1.1rem;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: auto;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            flex-shrink: 0;
        }

        .author-info h5 {
            color: var(--primary-color);
            margin-bottom: 2px;
            font-weight: 600;
        }

        .author-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: var(--bg-light);
            border: none;
            padding: 20px;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: var(--primary-color);
            color: white;
        }

        .faq-question span {
            font-size: 1.5rem;
            font-weight: 300;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            background: white;
            transition: all 0.3s ease;
            color: var(--text-light);
            line-height: 1.6;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 200px;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 50px;
        }

        .contact-info h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
            padding: 20px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
        }

        .contact-detail-icon {
            font-size: 24px;
            margin-top: 5px;
            flex-shrink: 0;
        }

        .contact-detail h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-detail p {
            color: var(--text-light);
            margin: 0;
        }

        .emergency-contact {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            margin-top: 20px;
        }

        .emergency-contact h4 {
            margin-bottom: 10px;
            color: white;
        }

        .emergency-contact strong {
            font-size: 1.3rem;
            display: block;
            margin-top: 10px;
        }

        /* Contact Form */
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow-light);
        }

        .contact-form h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--text-dark);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--border-color);
            border-radius: var(--border-radius);
            font-family: inherit;
            transition: var(--transition);
            font-size: 16px; /* Prevents zoom on iOS */
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .submit-btn {
            background: var(--primary-color);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }

        .submit-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            margin-bottom: 20px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .footer-section p {
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
        }

        .footer-section ul li a:hover {
            opacity: 1;
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .social-link {
            display: inline-block;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            text-align: center;
            opacity: 0.8;
        }

        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-color);
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
        }

        .floating-whatsapp img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 20px;
            }
            
            .nav-menu {
                gap: 20px;
            }
            
            .nav-menu li a {
                font-size: 1.1em;
                padding: 8px 15px;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }
            
            .contact-content {
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            /* Mobile Header */
            .header-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .logo {
                justify-content: center;
                min-width: auto;
            }
            
            .logo-image img {
                height: 40px;
            }

            .logo-text h1 {
                font-size: 20px;
            }

            .logo-text p {
                font-size: 11px;
            }

            .header-contact {
                gap: 10px;
                justify-content: center;
            }

            .phone-number {
                padding: 10px 20px;
                font-size: 14px;
                min-width: auto;
            }

            .whatsapp-btn img {
                height: 35px;
                width: 35px;
            }

            /* Mobile Navigation */
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            /* Mobile Hero */
            .hero {
                padding: 60px 0;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            /* Mobile Sections */
            .services,
            .process,
            .testimonials,
            .faq,
            .contact {
                padding: 60px 0;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 25px;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .contact-form {
                padding: 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            /* Mobile Floating WhatsApp */
            .floating-whatsapp {
                bottom: 20px;
                right: 15px;
                width: 55px;
                height: 55px;
            }

            .floating-whatsapp img {
                width: 35px;
                height: 35px;
            }

            .section-title {
                margin-bottom: 20px;
            }

            .section-subtitle {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            .top-bar-content {
                flex-direction: column;
                gap: 5px;
                text-align: center;
            }

            .emergency-notice {
                font-size: 13px;
            }

            .header-content {
                padding: 10px 0;
            }
            
            .logo {
                gap: 10px;
            }
            
            .logo-image img {
                height: 35px;
            }
            
            .logo-text h1 {
                font-size: 18px;
            }
            
            .logo-text p {
                font-size: 10px;
            }
            
            .phone-number {
                padding: 8px 16px;
                font-size: 13px;
            }
            
            .whatsapp-btn img {
                height: 30px;
                width: 30px;
            }

            .hero {
                padding: 40px 0;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }

            .service-card {
                padding: 20px;
            }
            
            .service-icon {
                font-size: 40px;
            }
            
            .service-card h3 {
                font-size: 1.3rem;
            }

            .process-step-content {
                padding: 20px;
            }
            
            .process-step-content h4 {
                font-size: 1.2rem;
            }

            .testimonial-card {
                padding: 20px;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }

            .contact-form {
                padding: 20px;
            }
            
            .contact-form h3 {
                font-size: 1.5rem;
            }
            
            .contact-info h3 {
                font-size: 1.5rem;
            }
            
            .contact-detail {
                padding: 15px;
            }

            .floating-whatsapp {
                width: 50px;
                height: 50px;
                bottom: 15px;
                right: 15px;
            }

            .floating-whatsapp img {
                width: 32px;
                height: 32px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .services,
            .process,
            .testimonials,
            .faq,
            .contact {
                padding: 40px 0;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 0 10px;
            }
            
            .btn {
                padding: 12px 24px;
                min-width: 150px;
            }
            
            .service-card {
                padding: 15px;
            }
            
            .process-step-content {
                padding: 15px;
            }
            
            .testimonial-card {
                padding: 15px;
            }
            
            .contact-form {
                padding: 15px;
            }
            
            .contact-detail {
                padding: 12px;
            }
            
            .emergency-contact {
                padding: 20px;
            }
        }

        /* Keyboard Navigation */
        .keyboard-nav *:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

        /* Print Styles */
        @media print {
            .top-bar,
            .floating-whatsapp,
            .sidebar,
            .sidebar-overlay,
            .mobile-menu-btn {
                display: none;
            }
        }
        
        /* Fix for image fallback */
        .process-step-image::before {
            content: '🏥';
            font-size: 4rem;
            color: white;
        }
        
        .process-step-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }