/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        
        /* Navigation Container */
        .nav-container {
            display: flex;
            justify-content: center;
            border-bottom: 1px solid #e0e0e0;
            padding: 1rem 0; /* 20px */
        }
        
        /* Navbar Layout */
        .simple-navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 80%;
            max-width: 100%;
        }
        
        /* Brand Styling */
        .brand {
            font-size: 1.5625rem; /* 25px */
            font-weight: 700;
            color: #333333;
        }
        
        /* WhatsApp Button Styling */
        .whatsapp-link {
            background-color: #128C7E;
            color: #ffffff;
            text-decoration: none;
            padding: 0.625rem 1.875rem; /* 10px 30px */
            border-radius: 0.25rem;
            font-size: 1.125rem; /* 18px */
            display: flex;
            align-items: center;
            gap: 0.3125rem; /* 5px */
            transition: background-color 0.3s ease;
        }
        
        .whatsapp-link:hover {
            background-color: #16ab9a;
        }
        
        /* Responsive Design */
        @media screen and (max-width: 37.5rem) { /* 600px */
            .simple-navbar {
                width: 90%;
            }
            
            .brand {
                font-size: 1rem; /* 16px */
            }
            
            .whatsapp-link {
                padding: 0.3125rem 0.625rem; /* 5px 10px */
                font-size: 0.8125rem; /* 13px */
            }
        }



        /* Hero Section */
        .hero {
            position: relative;
            height: 80vh;
            min-height: 600px;
            background: 
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://thumbs.dreamstime.com/b/sick-young-woman-lying-hospital-bed-waiting-doctor-sick-young-woman-lying-hospital-bed-waiting-doctor-118290277.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            padding: 0 10%;
            color: white;
        }
        
        .hero-content {
            display: flex;
            width: 100%;
            gap: 40px;
        }
        
        /* Left Content */
        .left-content {
            flex: 1;
            max-width: 600px;
        }
        
        .left-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .left-content p {
            font-size: 1.2rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        /* Right Box */
        .right-box {
            background: white;
            padding: 30px;
            border-radius: 8px;
            width: 400px;
            color: #333;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .box-text {
            margin-bottom: 25px;
        }
        
        .box-text h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .box-text p {
            color: #7f8c8d;
            line-height: 1.5;
        }
        
        .zipcode-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .zipcode-form input {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .zipcode-form input:focus {
            outline: none;
            border-color: #128C7E;
        }
        
        .find-btn {
            background: #128C7E;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .find-btn:hover {
            background: #16ab9a;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .left-content {
                max-width: 100%;
            }
            
            .right-box {
                width: 100%;
                max-width: 500px;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 0 5%;
            }
            
            .left-content h1 {
                font-size: 2.2rem;
            }
            
            .left-content p {
                font-size: 1rem;
            }
        }

        /* Consistent with previous styles */
              
        .features-section {
            padding: 60px 10%;
            background-color: #f9f9f9;
            border-bottom: 1px solid #9bf4e9;
        }
        
        .features-container {
            display: flex;
            gap: 30px;
            justify-content: center;
        }
        
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            flex: 1;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .feature-box h3 {
            color: #128C7E;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .feature-box p {
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .features-container {
                flex-wrap: wrap;
            }
            
            .feature-box {
                min-width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 576px) {
            .features-section {
                padding: 60px 5%;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .feature-box {
                min-width: 100%;
            }
        }


        /* Content Sections */
        .content-section {
            padding: 30px 10%;
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .section-img, .section-text {
            flex: 1;
        }
        
        .section-img img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-height: 350px;
            object-fit: cover;
        }
        
        .section-text h2 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .section-text p {
            color: #7f8c8d;
            line-height: 1.6;
            font-size: 1rem;
        }
        
        /* Improved Mobile Responsiveness */
        @media (max-width: 768px) {
            .content-section {
                flex-direction: column;
                padding: 40px 5%;
                gap: 25px;
            }
            
            .section-2 {
                flex-direction: column; /* Override row-reverse on mobile */
            }
            
            .section-img, .section-text {
                width: 100%;
            }
            
            .section-text h2 {
                font-size: 1.5rem;
                text-align: center; /* Optional: Center align text on mobile */
            }
            
            .section-text p {
                text-align: center; /* Optional: Center align text on mobile */
            }
        }


        /* Full Color Section */
        .cta-section {
            background-color: #128C7E; /* Vibrant blue */
            padding: 40px 20px;
            text-align: center;
            color: white;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background-color: white;
            color: #128C7E;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid white;
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .cta-section {
                padding: 60px 15px;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-section p {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 10px 25px;
                font-size: 1rem;
            }
        }


        /* Text Section */
        .text-section {
            padding: 50px 10%;
            background-color: #f8f9fa;
            text-align: center;
        }
        
        .text-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .text-section h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .text-section p {
            color: #495057;
            line-height: 1.7;
            font-size: 1.1rem;
            margin-bottom: 5    px;
            text-align: center;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .text-section {
                padding: 50px 5%;
            }
            
            .text-section h2 {
                font-size: 1.7rem;
            }
            
            .text-section p {
                font-size: 1rem;
            }
        }

        /* Footer Section */
        .footer {
            color: #ecf0f1;
            padding: 10px 0;
            font-size: 14px;
            border-top: 1px solid #128C7E;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 5px;
        }
        
        .footer-links a {
            color: #454545;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #128C7E;
        }
        
        .copyright {
            color: #7f8c8d;
        }
        
        @media (max-width: 768px) {
            .footer-links {
                flex-direction: row;
                gap: 10px;
            }
        }