<style>
        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #f43f5e;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --gray-light: #cbd5e1;
            --border-radius: 12px;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 650px;
            overflow-x: hidden;
        }

        .container {
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-header h1 {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .pricing-header p {
            font-size: 1rem;
            color: var(--gray);
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .toggle-container {
            margin: 2rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }

        .toggle-option {
            font-weight: 600;
            cursor: pointer;
            user-select: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            color: var(--gray);
        }

        .toggle-option.active {
            color: var(--dark);
        }

        .toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
            background: var(--primary);
            border-radius: 30px;
            padding: 4px;
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
        }

        .toggle-switch::before {
            content: '';
            position: absolute;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: white;
            left: 4px;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }

        .toggle-switch.yearly::before {
            transform: translateX(30px);
        }

        .savings-badge {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 1.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-left: 1rem;
            box-shadow: 0 4px 10px rgba(99, 102, 241, 0.25);
            opacity: 0;
            transform: translateY(5px);
            transition: all 0.3s ease;
        }

        .savings-badge.show {
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
            margin-top: 3rem;
            perspective: 1000px;
        }

        .pricing-plan {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            flex: 1;
            min-width: 280px;
            max-width: 320px;
            box-shadow: var(--shadow);
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--gray-light);
            transform-style: preserve-3d;
        }

        .pricing-plan:hover {
            transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .pricing-plan::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: 1;
        }

        .pricing-plan:hover::after {
            transform: scaleX(1);
        }

        .pricing-plan.popular {
            border-color: var(--primary);
            transform: scale(1.05);
            z-index: 2;
        }

        .pricing-plan.popular:hover {
            transform: scale(1.05) translateY(-10px) rotateX(2deg) rotateY(2deg);
        }

        .plan-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 1.5rem;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .plan-header {
            margin-bottom: 1.5rem;
        }

        .plan-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--dark);
        }

        .plan-description {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .price-container {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: baseline;
            position: relative;
            height: 60px;
        }

        .price-monthly, .price-yearly {
            position: absolute;
            top: 0;
            left: 0;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            opacity: 0;
            transform: translateY(20px);
        }

        .price-monthly.active, .price-yearly.active {
            opacity: 1;
            transform: translateY(0);
        }

        .price-amount {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }

        .price-currency {
            font-size: 1.25rem;
            font-weight: 600;
            vertical-align: top;
            margin-right: 0.25rem;
            color: var(--dark);
        }

        .price-period {
            font-size: 0.9rem;
            color: var(--gray);
            margin-left: 0.5rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            color: var(--gray);
        }

        .feature-icon {
            color: var(--primary);
            margin-right: 0.75rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .cta-button {
            display: block;
            width: 100%;
            padding: 0.9rem 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .cta-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 10px rgba(99, 102, 241, 0.25);
        }

        .cta-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 6px 15px rgba(99, 102, 241, 0.35);
            transform: translateY(-2px);
        }

        .cta-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .cta-secondary:hover {
            background: rgba(99, 102, 241, 0.1);
            transform: translateY(-2px);
        }

        .cta-button::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            transform: scale(0);
            opacity: 0;
            transition: all 0.6s;
        }

        .cta-button:active::after {
            transform: scale(20);
            opacity: 0;
            transition: 0s;
        }

        .faq-section {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid var(--gray-light);
        }

        .faq-header {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .faq-text {
            font-size: 0.95rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .faq-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .faq-link:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .faq-link-icon {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .faq-link:hover .faq-link-icon {
            transform: translateX(3px);
        }

        @media (max-width: 768px) {
            .pricing-grid {
                flex-direction: column;
                align-items: center;
            }

            .pricing-plan {
                width: 100%;
                max-width: 400px;
            }

            .pricing-plan.popular {
                transform: scale(1);
                order: -1;
            }

            .pricing-plan.popular:hover {
                transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
            }

            .pricing-header h1 {
                font-size: 1.75rem;
            }
        }

        /* Animation for pricing table */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pricing-plan {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .pricing-plan:nth-child(1) {
            animation-delay: 0.2s;
        }

        .pricing-plan:nth-child(2) {
            animation-delay: 0.4s;
        }

        .pricing-plan:nth-child(3) {
            animation-delay: 0.6s;
        }

        /* Gradient background pattern */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.05;
            background-image: 
                radial-gradient(var(--primary) 2px, transparent 2px),
                radial-gradient(var(--secondary) 2px, transparent 2px);
            background-size: 60px 60px;
            background-position: 0 0, 30px 30px;
        }
		
		.map-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}
.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    </style>