        :root {
            --medical-blue: #007CBA;
            --light-blue: #D6EEF9;
            --pure-white: #FFFFFF;
            --light-gray: #F2F2F2;
            --dark-gray: #4A4A4A;
            --accent-green: #5AC8B0;
            --shadow: rgba(0, 124, 186, 0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Lato', sans-serif;
        }
        
        body {
            background-color: var(--pure-white);
            color: var(--dark-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--pure-white);
            box-shadow: 0 2px 10px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .medical-cross {
            width: 42px;
            height: 42px;
            background-color: var(--medical-blue);
            position: relative;
            border-radius: 4px;
        }
        
        .medical-cross::before, .medical-cross::after {
            content: '';
            position: absolute;
            background-color: var(--pure-white);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .medical-cross::before {
            width: 26px;
            height: 6px;
        }
        
        .medical-cross::after {
            width: 6px;
            height: 26px;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--medical-blue);
            letter-spacing: -0.5px;
        }
        
        .nav-links {
            display: flex;
            gap: 35px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1.05rem;
        }
        
        .nav-links a:hover {
            color: var(--medical-blue);
        }
        
        .cta-button {
            background-color: var(--accent-green);
            color: var(--pure-white);
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-size: 1.05rem;
            box-shadow: 0 4px 12px rgba(90, 200, 176, 0.3);
        }
        
        .cta-button:hover {
            background-color: #48b59f;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(90, 200, 176, 0.4);
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 0;
            display: flex;
            align-items: center;
            gap: 60px;
            background: linear-gradient(to right, var(--pure-white) 50%, var(--light-blue) 50%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            flex: 1;
            z-index: 2;
        }
        
        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            line-height: 1.2;
            color: var(--medical-blue);
        }
        
        .hero h2 span {
            color: var(--accent-green);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            color: var(--dark-gray);
            max-width: 600px;
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px var(--shadow);
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 20px;
            transition: transform 0.5s;
        }
        
        .hero-image:hover img {
            transform: scale(1.03);
        }
        
        .hero-stats {
            display: flex;
            gap: 25px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--medical-blue);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--dark-gray);
        }
        
        /* Benefits Section */
        .benefits {
            padding: 90px 0;
            background-color: var(--light-gray);
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--medical-blue);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-green);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 70px;
            color: var(--dark-gray);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }
        
        .benefit-card {
            background-color: var(--pure-white);
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px var(--shadow);
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-icon {
            width: 80px;
            height: 80px;
            background-color: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--medical-blue);
            font-size: 2rem;
        }
        
        .benefit-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--medical-blue);
        }
        
        /* Packages Section */
        .packages {
            padding: 90px 0;
            background-color: var(--pure-white);
            position: relative;
        }
        
        .packages-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 50px;
        }
        
        .package-card {
            flex: 1;
            min-width: 300px;
            max-width: 380px;
            background: var(--light-gray);
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px var(--shadow);
            position: relative;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s;
        }
        
        .package-card.popular {
            background: linear-gradient(135deg, var(--pure-white) 0%, var(--light-blue) 100%);
            border: 3px solid var(--accent-green);
            transform: scale(1.03);
        }
        
        .package-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--medical-blue);
        }
        
        .package-badge {
            display: inline-block;
            background-color: var(--accent-green);
            color: var(--pure-white);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--medical-blue);
            margin-bottom: 25px;
        }
        
        .price span {
            font-size: 1.2rem;
            color: var(--dark-gray);
            font-weight: normal;
        }
        
        .dev-fee {
            background-color: rgba(0, 124, 186, 0.1);
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
            font-weight: 600;
            color: var(--medical-blue);
        }
        
        .package-features {
            list-style: none;
            margin-bottom: 35px;
            text-align: left;
        }
        
        .package-features li {
            margin-bottom: 15px;
            padding-left: 35px;
            position: relative;
            line-height: 1.5;
        }
        
        .package-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .platform-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
        }
        
        .platform-icon {
            width: 45px;
            height: 45px;
            background-color: var(--pure-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--medical-blue);
            font-size: 1.3rem;
            box-shadow: 0 3px 10px var(--shadow);
        }
        
        /* Custom Solutions */
        .custom-solutions {
            padding: 90px 0;
            background-color: var(--light-blue);
            position: relative;
        }
        
        .custom-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .custom-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px var(--shadow);
        }
        
        .custom-image img {
            max-width: 100%;
            transition: transform 0.5s;
        }
        
        .custom-image:hover img {
            transform: scale(1.05);
        }
        
        .custom-text {
            flex: 1;
        }
        
        .custom-text h2 {
            font-size: 2.3rem;
            margin-bottom: 25px;
            color: var(--medical-blue);
        }
        
        .examples-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .example-card {
            background-color: var(--pure-white);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .example-card h4 {
            color: var(--medical-blue);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .example-card h4 i {
            color: var(--accent-green);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 90px 0;
            background-color: var(--pure-white);
        }
        
        .testimonials-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            flex: 1;
            min-width: 300px;
            background-color: var(--light-gray);
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px var(--shadow);
            position: relative;
        }
        
        .testimonial-card::before {
            content: "";
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: var(--light-blue);
            opacity: 0.7;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 2;
            padding-top: 30px;
        }
        
        .doctor-info {
            display: flex;
            align-items: center;
            margin-top: 25px;
        }
        
        .doctor-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--medical-blue);
            margin-right: 15px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--medical-blue) 0%, #0066a0 100%);
            color: var(--pure-white);
        }
        
        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .cta-button.white {
            background-color: var(--pure-white);
            color: var(--medical-blue);
        }
        
        .cta-button.white:hover {
            background-color: var(--light-gray);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: var(--pure-white);
            padding: 70px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            margin-bottom: 25px;
            font-size: 1.5rem;
            color: var(--accent-green);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-green);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: var(--accent-green);
        }
        
        .footer-links a i {
            width: 20px;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background-color: var(--accent-green);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.95rem;
        }
        
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
                background: var(--light-blue);
            }
            
            .hero-content {
                order: 2;
            }
            
            .hero-image {
                order: 1;
                margin-bottom: 40px;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .custom-content {
                flex-direction: column;
            }
            
            .nav-links {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .hero h2 {
                font-size: 2.3rem;
            }
            
            .cta-section h2 {
                font-size: 2.2rem;
            }
            
            .package-card.popular {
                transform: scale(1);
            }
        }