  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
            color: #2c5530;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #4CAF50, #2E7D32);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #2E7D32;
        }

        .logo-text .health {
            color: #4CAF50;
        }

        .tagline {
            font-size: 12px;
            color: #666;
            margin-top: -5px;
        }

        .contact-info {
            color: #4CAF50;
            font-weight: 600;
            font-size: 16px;
        }

        /* Main Content Styles */
        .main-content {
            padding: 60px 0;
        }

        .hero-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 80px;
        }

        .hero-text h1 {
            font-size: 48px;
            font-weight: 700;
            color: #2E7D32;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        /* Hero Form/Appointment Container Styles */
        .hero-form {
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(76, 175, 80, 0.3);
            text-align: center;
            color: white;
        }

        .hero-form h2 {
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .hero-form p {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .submit-btn {
            width: 100%;
            padding: 20px;
            background: #2E7D32;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
        }

        .submit-btn:hover {
            background: #1B5E20;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Booking Section Styles */
        .booking-section {
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 42px;
            color: #4CAF50;
            margin-bottom: 50px;
            text-align: center;
            font-weight: 700;
        }

        .booking-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }

        .step {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            text-align: center;
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px auto;
        }

        .step h3 {
            color: #2E7D32;
            font-size: 18px;
            font-weight: 500;
            line-height: 1.4;
        }

        .step p {
            color: #555;
            font-size: 16px;
        }

        /* Services Section Styles */
        .services-section {
            margin-bottom: 60px;
            background: #f8fdf8;
            padding: 60px 40px;
            border-radius: 20px;
        }

        .services-grid {
            display: grid;
            gap: 40px;
        }

        .service-item {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .service-content {
            flex: 1;
        }

        .service-item h3 {
            color: #2E7D32;
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .service-item p {
            color: #555;
            font-size: 16px;
            line-height: 1.6;
        }

        footer {
      text-align: center;
      padding: 30px 20px;
      background: #0b7530;
      color: #fff;
    }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 36px;
                text-align: center;
            }

            .section-title {
                font-size: 32px;
            }

            .booking-steps {
                grid-template-columns: 1fr;
            }

            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            .services-section {
                padding: 40px 20px;
            }

            .service-item {
                flex-direction: column;
                text-align: center;
            }

            .service-number {
                margin: 0 auto 15px auto;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step, 
        .service-item {
            animation: fadeInUp 0.6s ease forwards;
        }

        .step:nth-child(2) { 
            animation-delay: 0.1s; 
        }

        .step:nth-child(3) { 
            animation-delay: 0.2s; 
        }

        .step:nth-child(4) { 
            animation-delay: 0.3s; 
        }