<style>
        /* General Styles */
        body {
            background-color: #f9f9f9;
            overflow-x: hidden;
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
        }

        /* 1. Header Section - Hero Banner */
        .hero-section {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #fff;
            height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 0 20px;
        }

        .hero-section h1 {
            font-size: 4rem;
            letter-spacing: 2px;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            font-weight: 700;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
            animation: slideUp 1s ease-out forwards;
        }

        .breadcrumb {
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 1px;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.5s forwards;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            backdrop-filter: blur(5px);
        }

        .breadcrumb a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: #e0e0e0;
        }

        /* 2. Pricing Cards Section */
        #pricing {
            padding: 100px 20px;
            position: relative;
            z-index: 1;
        }

        /* Particle Background for Pricing Section */
        .pricing-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: -1;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: #fff;
            border-radius: 20px;
            padding: 0; /* Padding handled by inner containers */
            text-align: center;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
            opacity: 0;
            transform: translateY(50px);
        }

        .pricing-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        /* Card Header */
        .card-header {
            padding: 40px 20px;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        /* Color Coding */
        .pricing-card.hosting .card-header { background: linear-gradient(135deg, #0d6efd, #0a58ca); }
        .pricing-card.design .card-header { background: linear-gradient(135deg, #00d25b, #00a346); }
        .pricing-card.seo .card-header { background: linear-gradient(135deg, #fd7e14, #e36a0d); }

        /* Accent for Buttons and Prices */
        .pricing-card.hosting { --accent-color: #0d6efd; }
        .pricing-card.design { --accent-color: #00d25b; }
        .pricing-card.seo { --accent-color: #fd7e14; }

        .plan-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
            opacity: 0.8;
        }

        /* Card Body */
        .card-body {
            padding: 40px 30px;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
            text-align: left;
        }

        .features-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            color: #555;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .features-list li i {
            color: var(--accent-color);
            margin-right: 15px;
            font-size: 1.1rem;
        }

        /* Button */
        .pricing-btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: var(--accent-color);
            color: #fff;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .pricing-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            filter: brightness(1.1);
            color: #fff;
        }

        /* Most Popular Badge */
        .most-popular {
            position: absolute;
            top: 20px;
            right: -35px;
            background: #ffc107;
            color: #333;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            z-index: 2;
        }

        /* 4. Call to Action Section */
        #cta {
            padding: 80px 20px;
            background: linear-gradient(45deg, #212529, #343a40);
			background: linear-gradient(45deg, #0d6efd, #00d25b); /* Updated to Blue-Green Theme */
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .wave-animation {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="rgba(255,255,255,0.05)"></path></svg>');
            background-size: 200% 100%;
            animation: waveFlow 15s linear infinite;
        }

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

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .cta-btn-large {
            display: inline-block;
            padding: 18px 50px;
            background: linear-gradient(90deg, #0d6efd, #00d25b);
            color: #fff;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 30px;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
        }

        .cta-btn-large:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 210, 91, 0.4);
            color: #fff;
        }

        /* Animations Keyframes */
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

        @keyframes waveFlow {
            0% { background-position-x: 0; }
            100% { background-position-x: 200%; }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-card:last-child {
                grid-column: span 2; /* Center last card if odd number */
                max-width: 50%;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2.5rem; }
            
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .pricing-card:last-child {
                grid-column: span 1;
                max-width: 100%;
            }
        }
       </style>