        * {
            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-image {
            max-height: 80px;
            width: auto;
        }

        .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);
        }

        .book-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);
        }

        .book-btn:hover {
            background: #1B5E20;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
        }

        .book-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;
        }

        /* Login Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .modal-overlay.active {
            display: flex;
        }

        .login-modal {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.7);
            opacity: 0;
            transition: all 0.3s ease;
            position: relative;
        }

        .modal-overlay.active .login-modal {
            transform: scale(1);
            opacity: 1;
        }

        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .login-header h2 {
            color: #333;
            margin-bottom: 10px;
            font-size: 28px;
        }

        .login-header p {
            color: #666;
            font-size: 16px;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            color: #333;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input {
            padding: 12px 15px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.3s ease;
            outline: none;
        }

        .form-group input:focus {
            border-color: #667eea;
        }

        .login-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .forgot-password {
            text-align: center;
            margin-top: 15px;
        }

        .forgot-password a {
            color: #667eea;
            text-decoration: none;
            font-size: 14px;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: #333;
        }

        /* Blur effect for background */
        body.modal-open {
            overflow: hidden;
        }

        body.modal-open .container {
            filter: blur(5px);
            pointer-events: none;
        }

        /* 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;
            }

            .login-modal {
                margin: 20px;
                padding: 30px 20px;
            }
        }

        /* 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; 
        }
