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

        body {
            font-family: 'Nunito', sans-serif;
            line-height: 1.7;
            color: #2d3748;
            overflow-x: hidden;
        }

        /* Warm Animation Classes */
        .bounce-in {
            opacity: 0;
            transform: scale(0.3) rotate(-10deg);
            transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .bounce-in.active {
            opacity: 1;
            transform: scale(1) rotate(0);
        }

        .warm-slide {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease-out;
        }

        .warm-slide.active {
            opacity: 1;
            transform: translateY(0);
        }

        .heart-beat {
            animation: heartBeat 2s ease-in-out infinite;
        }

        @keyframes heartBeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .gentle-float {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.5s ease;
        }

        .gentle-float.active {
            opacity: 1;
            transform: translateY(0);
        }

        .warm-glow {
            opacity: 0;
            filter: blur(5px);
            transition: all 1.3s ease;
        }

        .warm-glow.active {
            opacity: 1;
            filter: blur(0);
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #e53e3e, #fc8181, #feb2b2);
            color: white;
            padding: 1.2rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 25px rgba(229, 62, 62, 0.3);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo::before {
            content: '❤️';
            animation: heartBeat 2s infinite;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.8rem 1.2rem;
            border-radius: 25px;
            font-weight: 600;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }

        .cta-btn {
            background: linear-gradient(45deg, #38a169, #68d391);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 5px 20px rgba(56, 161, 105, 0.4);
        }

        .cta-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 30px rgba(56, 161, 105, 0.6);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fed7d7 0%, #fbb6ce 50%, #e53e3e 100%);
            color: #2d3748;
            text-align: center;
            padding: 160px 2rem 140px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.7"><animate attributeName="cy" dur="3s" values="20;80;20" repeatCount="indefinite"/></circle><circle cx="80" cy="60" r="1.5" fill="%23ffffff" opacity="0.8"><animate attributeName="cy" dur="4s" values="60;10;60" repeatCount="indefinite"/></circle><circle cx="50" cy="30" r="1" fill="%23ffffff" opacity="0.9"><animate attributeName="cy" dur="2.5s" values="30;70;30" repeatCount="indefinite"/></circle></svg>') repeat;
            animation: gentleFloat 20s infinite linear;
        }

        @keyframes gentleFloat {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100px, -50px); }
        }

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

        .hero h1 {
            font-size: 4.2rem;
            margin-bottom: 2rem;
            font-weight: 800;
            color: #2d3748;
            animation: warmHeroSlide 2s ease;
            text-shadow: 2px 2px 8px rgba(255,255,255,0.5);
        }

        .hero p {
            font-size: 1.6rem;
            margin-bottom: 3rem;
            animation: warmHeroSlide 2s ease 0.5s both;
            color: #4a5568;
            font-weight: 500;
        }

        @keyframes warmHeroSlide {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-buttons {
            animation: warmHeroSlide 2s ease 1s both;
        }

        /* Warm Wave 
        .warm-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 120px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 C300,100 500,20 800,60 C900,80 1000,40 1200,60 V120 H0 Z" fill="%23fef5e7"/></svg>') repeat-x;
            animation: warmWave 5s ease-in-out infinite;
        }

        @keyframes warmWave {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-30px); }
        }
*/
        /* Sections */
        .section {
            padding: 120px 120px;
            max-width: 100%;
            margin: 0 auto;
        }

        .section h2 {
            text-align: center;
            font-size: 3.2rem;
            margin-bottom: 4rem;
            color: #e53e3e;
            font-weight: 700;
            position: relative;
        }

        .section h2::after {
            content: '❤️';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            animation: heartBeat 2s infinite;
        }

        /* About Section */
        .about {
            background: #fef5e7;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.3rem;
            line-height: 2;
            color: #4a5568;
        }

        .about-text h3 {
            color: #e53e3e;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .family-image {
            background: linear-gradient(135deg, #e53e3e, #fc8181);
            height: 380px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            text-align: center;
            box-shadow: 0 15px 50px rgba(229, 62, 62, 0.3);
            transition: all 0.4s ease;
            font-weight: 600;
        }

        .family-image:hover {
            transform: scale(1.05) rotate(-2deg);
        }

        /* Services */
        .services {
            background: white;
        }

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

        .service-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(229, 62, 62, 0.1);
            transition: all 0.5s ease;
            border: 3px solid #fed7d7;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #fed7d7, #fbb6ce);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .service-card:hover::before {
            opacity: 0.1;
        }

        .service-card:hover {
            transform: translateY(-20px) scale(1.03) rotate(2deg);
            box-shadow: 0 25px 60px rgba(229, 62, 62, 0.2);
            border-color: #e53e3e;
        }

        .service-card h3 {
            color: #e53e3e;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            position: relative;
            z-index: 2;
            font-weight: 700;
        }

        .service-card p {
            position: relative;
            z-index: 2;
            line-height: 1.9;
            color: #4a5568;
        }

        /* Why Choose Us */
        .why-choose {
            background: linear-gradient(135deg, #e53e3e, #fc8181);
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 3rem;
        }

        .feature-item {
            text-align: center;
            padding: 3rem;
            background: rgba(255,255,255,0.15);
            border-radius: 25px;
            backdrop-filter: blur(15px);
            transition: all 0.5s ease;
            border: 2px solid rgba(255,255,255,0.2);
        }

        .feature-item:hover {
            transform: translateY(-15px) rotate(3deg);
            background: rgba(255,255,255,0.25);
        }

        .feature-icon {
            width: 110px;
            height: 110px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            border: 3px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            animation: heartBeat 1s infinite;
        }

        /* Health Care Plan */
        .healthcare-plan {
            background: #fef5e7;
        }

        .plan-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 3rem;
        }

        .plan-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(229, 62, 62, 0.1);
            text-align: center;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            border: 3px solid #fed7d7;
        }

        .plan-card::before {
            content: '❤️';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 3rem;
            animation: heartBeat 2s infinite;
        }

        .plan-card:hover {
            transform: scale(1.08) rotate(-3deg);
            box-shadow: 0 30px 80px rgba(229, 62, 62, 0.3);
            border-color: #e53e3e;
        }

        .plan-price {
            font-size: 3.2rem;
            color: #e53e3e;
            font-weight: bold;
            margin: 2rem 0;
        }

        .plan-card h3 {
            color: #2d3748;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            margin-top: 2rem;
            font-weight: 700;
        }

        /* Contact Form */
        .contact {
            background: linear-gradient(135deg, #fc8181, #fbb6ce);
            color: #2d3748;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
        }

        .contact-info h3 {
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            color: #2d3748;
            font-weight: 700;
        }

        .contact-info p {
            font-size: 1.3rem;
            line-height: 2.5;
            margin-bottom: 1.5rem;
            color: #4a5568;
            font-weight: 500;
        }

        .form-group {
            margin-bottom: 2.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 1rem;
            font-weight: bold;
            font-size: 1.2rem;
            color: #2d3748;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1.5rem;
            border: 3px solid #fed7d7;
            border-radius: 15px;
            font-size: 1.1rem;
            background: rgba(255,255,255,0.9);
            color: #2d3748;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #e53e3e;
            box-shadow: 0 0 20px rgba(229, 62, 62, 0.3);
            transform: scale(1.02);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(45deg, #e53e3e, #fc8181);
            color: white;
            padding: 1.5rem 3rem;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            font-size: 1.3rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(229, 62, 62, 0.6);
        }

        /* Testimonials */
        .testimonials {
            background: #fef5e7;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
        }

        .testimonial-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(229, 62, 62, 0.1);
            text-align: center;
            transition: all 0.5s ease;
            position: relative;
            border: 3px solid #fed7d7;
        }

        .testimonial-card::before {
            content: '❤️';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 3rem;
            animation: heartBeat 2s infinite;
        }

        .testimonial-card:hover {
            transform: translateY(-15px) rotate(2deg);
            border-color: #e53e3e;
            box-shadow: 0 30px 70px rgba(229, 62, 62, 0.2);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 2.5rem;
            font-size: 1.3rem;
            line-height: 2;
            margin-top: 3rem;
            color: #4a5568;
        }

        .testimonial-author {
            font-weight: bold;
            color: #e53e3e;
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2d3748, #4a5568);
            color: white;
            padding: 5rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 2rem;
            color: #fc8181;
            font-size: 1.5rem;
            font-weight: 700;
        }

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

        .footer-section ul li {
            margin-bottom: 1rem;
        }

        .footer-section ul li a {
            color: #cbd5e0;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #fc8181;
            padding-left: 10px;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            animation: warmModalFadeIn 0.4s ease;
        }

        .modal-content {
            background: linear-gradient(135deg, white, #fef5e7);
            color: #2d3748;
            margin: 3% auto;
            padding: 4rem;
            border-radius: 25px;
            width: 90%;
            max-width: 750px;
            max-height: 85vh;
            overflow-y: auto;
            animation: warmModalSlideIn 0.4s ease;
            box-shadow: 0 30px 80px rgba(229, 62, 62, 0.3);
            border: 3px solid #fed7d7;
        }

        @keyframes warmModalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes warmModalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-80px) scale(0.9) rotate(-5deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1) rotate(0);
            }
        }

        .close {
            color: #e53e3e;
            float: right;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close:hover {
            color: #fc8181;
            transform: scale(1.2) rotate(15deg);
        }

        .confirmation {
            display: none;
            background: linear-gradient(45deg, #38a169, #68d391);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
            text-align: center;
            animation: warmConfirmation 0.6s ease;
            font-weight: bold;
        }

        @keyframes warmConfirmation {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.8) rotate(-5deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1) rotate(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .section {
                padding: 80px 1rem;
            }

            .section h2 {
                font-size: 2.5rem;
            }
        }
    