   <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }
        
        /* Top Social Bar */
        .social-bar {
            background: linear-gradient(135deg, #3d9b8f 0%, #4aa89c 100%);
            padding: 10px 0;
            text-align: right;
        }
        
        .social-bar .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .social-icons {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
        }
        
        .social-icons a {
            color: white;
            font-size: 20px;
            opacity: 0.9;
            transition: opacity 0.3s;
        }
        
        .social-icons a:hover {
            opacity: 1;
        }
        
        /* Navigation */
        nav {
            background: #1a3d47;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }
        
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
            list-style: none;
        }
        
        .nav-links a {
            color: #b8cfd4;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #4aa89c;
        }
        
        /* Dropdown Menu */
        .nav-item {
            position: relative;
        }
        
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #1a3d47;
            min-width: 200px;
            padding: 10px 0;
            border-radius: 5px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 1000;
        }
        
        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown a {
            display: block;
            padding: 12px 25px;
            color: #b8cfd4;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .dropdown a:hover {
            background: rgba(74, 168, 156, 0.1);
            color: #4aa89c;
            padding-left: 30px;
        }
        
        /* Mobile Navigation Bar */
        .mobile-nav-bar {
            display: none;
            background: #1a3d47;
            padding: 15px 0;
            border-bottom: 2px solid #4aa89c;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .mobile-nav-bar .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
        }
        
        .mobile-nav-bar .container::-webkit-scrollbar {
            display: none;
        }
        
        .mobile-nav-bar a {
            color: #b8cfd4;
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s;
            flex-shrink: 0;
        }
        
        .mobile-nav-bar a:hover,
        .mobile-nav-bar a.active {
            background: #4aa89c;
            color: white;
        }
        
        .mobile-nav-bar .nav-divider {
            color: #4aa89c;
            margin: 0 5px;
        }
        
        .phone-btn {
            background: transparent;
            border: 2px solid #4aa89c;
            color: #4aa89c;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .phone-btn:hover {
            background: #4aa89c;
            color: white;
        }
        
		
		        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(26, 61, 71, 0.9), rgba(26, 61, 71, 0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a3d47" width="1200" height="400"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 100px 0 80px;
            text-align: center;
            color: white;
        }
        
        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 20px;
            color: #d4e0e3;
            max-width: 800px;
            margin: 0 auto;
        }
		
		
		
		
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 61, 71, 0.95), rgba(26, 61, 71, 0.95)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a3d47" width="1200" height="600"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 100px 0 80px;
            text-align: center;
            color: white;
        }
        
        .hero .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .hero h1 {
            font-size: 52px;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .hero .highlight {
            color: #4aa89c;
        }
        
        .hero p {
            font-size: 22px;
            color: #d4e0e3;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .badge {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #d4e0e3;
            font-size: 16px;
        }
        
        .badge-icon {
            font-size: 24px;
        }
        
        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: white;
        }
        
        .benefits .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            color: #1a3d47;
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .section-header p {
            color: #666;
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .benefit-card {
            text-align: center;
            padding: 30px;
        }
        
        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3d9b8f 0%, #4aa89c 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: white;
        }
        
        .benefit-card h3 {
            color: #1a3d47;
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .benefit-card p {
            color: #666;
            line-height: 1.8;
        }
        
        /* What's Included Section */
        .whats-included {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .whats-included .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .included-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }
        
        .included-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            display: flex;
            gap: 20px;
            align-items: start;
        }
        
        .check-icon {
            color: #4aa89c;
            font-size: 28px;
            font-weight: bold;
            flex-shrink: 0;
        }
		
		.included-item {
			position: relative;
			overflow: hidden;
		}

		.included-item-image {
			width: 100%;
			height: 200px;
			overflow: hidden;
			border-radius: 8px;
			margin-bottom: 20px;
		}

		.included-item-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.3s;
		}

		.included-item:hover .included-item-image img {
			transform: scale(1.05);
		}

		/* Mobile adjustments */
		@media (max-width: 768px) {
		.included-item-image {
        height: 150px;
		}
		
	}
        
        .included-content h4 {
            color: #1a3d47;
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .included-content p {
            color: #666;
            line-height: 1.7;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background: white;
        }
        
        .pricing .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 50px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .pricing-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .pricing-card.featured {
            border: 3px solid #4aa89c;
            background: linear-gradient(135deg, #f0fffe 0%, #ffffff 100%);
            transform: scale(1.05);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #4aa89c;
            color: white;
            padding: 8px 25px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .plan-name {
            color: #1a3d47;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .plan-price {
            color: #4aa89c;
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .plan-period {
            color: #666;
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .plan-savings {
            color: #4aa89c;
            font-weight: 600;
            margin-bottom: 30px;
            font-size: 15px;
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 35px;
            text-align: left;
        }
        
        .plan-features li {
            color: #666;
            padding: 15px 0;
            padding-left: 35px;
            position: relative;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .plan-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4aa89c;
            font-weight: bold;
            font-size: 20px;
        }
        
        .select-plan-btn {
            display: block;
            width: 100%;
            background: #4aa89c;
            color: white;
            padding: 18px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .select-plan-btn:hover {
            background: #3d9b8f;
        }
        
        .pricing-card.featured .select-plan-btn {
            background: #1a3d47;
        }
        
        .pricing-card.featured .select-plan-btn:hover {
            background: #2a5560;
        }
        
        /* Signup Form Section */
        .signup-section {
            padding: 80px 0;
            background: #1a3d47;
        }
        
        .signup-section .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .form-card {
            background: white;
            padding: 60px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .form-header img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin-bottom: 20px;
        }
        
        .form-header h2 {
            color: #1a3d47;
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .form-header p {
            color: #666;
            font-size: 16px;
        }
        
        .selected-plan-display {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            text-align: center;
            border: 2px solid #4aa89c;
        }
        
        .selected-plan-display .plan-label {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .selected-plan-display .plan-details {
            color: #1a3d47;
            font-size: 24px;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            color: #1a3d47;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 15px;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4aa89c;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .submit-btn {
            width: 100%;
            background: #4aa89c;
            color: white;
            border: none;
            padding: 20px;
            border-radius: 8px;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }
        
        .submit-btn:hover {
            background: #3d9b8f;
        }
        
        .form-note {
            text-align: center;
            color: #999;
            font-size: 14px;
            margin-top: 20px;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .testimonials .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .stars {
            color: #ffc107;
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .testimonial-text {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            color: #1a3d47;
            font-weight: 600;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: white;
        }
        
        .faq .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .faq-list {
            margin-top: 50px;
        }
        
        .faq-item {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .faq-item h3 {
            color: #1a3d47;
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .faq-item p {
            color: #666;
            line-height: 1.8;
        }
        
        /* Footer */
        footer {
            background: #1a3d47;
            color: #b8cfd4;
            padding: 60px 0 30px;
        }
        
        footer .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #b8cfd4;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #4aa89c;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(184, 207, 212, 0.2);
        }
        
        /* Hidden by default */
        .signup-section {
            display: none;
        }
        
        @media (max-width: 1024px) {
            .pricing-cards {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .included-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-nav-bar {
                display: block;
            }
            
            .phone-btn {
                display: none;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .form-card {
                padding: 40px 30px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
    </style>