</style>

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial Black', Arial, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
            min-height: 100vh;
        }
      
        /* Header and Navigation */
        .business-page nav {
            background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
            box-shadow: 0 4px 20px rgba(124, 179, 66, 0.4);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 4px solid #1a1a1a;
        }

        nav {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo-nav {
            font-size: 1.8rem;
            font-weight: 900;
            color: #1a1a1a;
            text-decoration: none;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1rem;
        }

        .nav-links a {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 800;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            border: 3px solid transparent;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: #1a1a1a;
            color: white;
            border: 3px solid #1a1a1a;
            transform: translateY(-2px);
        }

        /* Main Content */
        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 20px;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            border-radius: 15px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            margin-bottom: 4rem;
            border: 4px solid #7cb342;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, #7cb342, #8bc34a, #4caf50);
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 0px #7cb342;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #7cb342;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            font-weight: 500;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Value Proposition Section */
        .value-prop {
            background: white;
            padding: 4rem 3rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            margin-bottom: 4rem;
            border: 4px solid #1a1a1a;
            position: relative;
        }

        .value-prop::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, #7cb342, #8bc34a, #4caf50);
        }

        .value-prop h2 {
            font-size: 3rem;
            font-weight: 900;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .value-item {
            text-align: center;
            padding: 2rem;
            background: #f8f8f8;
            border-radius: 12px;
            border: 3px solid #7cb342;
            transition: transform 0.3s ease;
        }

        .value-item:hover {
            transform: translateY(-10px);
            background: #7cb342;
            color: white;
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .value-item h3 {
            font-size: 1.3rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .value-item p {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.6;
        }

        /* Subscription Tiers */
        .tiers-section {
            margin-bottom: 4rem;
        }

        .tiers-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .tiers-header h2 {
            font-size: 3.5rem;
            font-weight: 900;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 0px #7cb342;
        }

        .tiers-header p {
            font-size: 1.3rem;
            color: #4a4a4a;
            font-weight: 600;
        }

        .tiers-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .tier-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 4px solid #1a1a1a;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            display: grid;
            grid-template-columns: 250px 1fr 200px;
            align-items: center;
        }

        .tier-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .tier-card.featured {
            border-color: #ff6b35;
        }

        .tier-card.featured::before {
            background: linear-gradient(90deg, #ff6b35, #ff8c42, #ffa726);
        }

        .tier-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, #7cb342, #8bc34a, #4caf50);
        }

        .tier-header {
            padding: 2rem;
            text-align: center;
            background: #f8f8f8;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .tier-name {
            font-size: 1.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }

        .tier-price {
            font-size: 2.5rem;
            font-weight: 900;
            color: #7cb342;
            margin-bottom: 0.5rem;
        }

        .tier-card.featured .tier-price {
            color: #ff6b35;
        }

        .tier-period {
            font-size: 1rem;
            color: #666;
            font-weight: 600;
        }

        .tier-content {
            padding: 2rem;
            flex-grow: 1;
        }

        .tier-description {
            font-size: 1.1rem;
            color: #4a4a4a;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .tier-features {
            list-style: none;
            margin-bottom: 0;
        }

        .tier-features li {
            padding: 0.5rem 0;
            color: #1a1a1a;
            font-weight: 600;
            position: relative;
            padding-left: 2rem;
            font-size: 0.9rem;
        }

        .tier-features li::before {
            content: "âœ"";
            position: absolute;
            left: 0;
            color: #7cb342;
            font-weight: 900;
            font-size: 1.2rem;
        }

        .tier-card.featured .tier-features li::before {
            color: #ff6b35;
        }

        .tier-actions {
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tier-button {
            display: block;
            background: #7cb342;
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            border: 3px solid #7cb342;
            white-space: nowrap;
        }

        .tier-button:hover {
            background: white;
            color: #7cb342;
            transform: translateY(-2px);
        }

        .tier-card.featured .tier-button {
            background: #ff6b35;
            border-color: #ff6b35;
        }

        .tier-card.featured .tier-button:hover {
            background: white;
            color: #ff6b35;
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: #ff6b35;
            color: white;
            padding: 0.5rem 3rem;
            font-weight: 800;
            font-size: 0.9rem;
            transform: rotate(45deg);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            padding: 4rem 3rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            border: 4px solid #7cb342;
            position: relative;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, #7cb342, #8bc34a, #4caf50);
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #7cb342;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            font-weight: 500;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            background: #7cb342;
            color: #1a1a1a;
            padding: 1.2rem 2.5rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: 3px solid #7cb342;
        }

        .cta-button:hover {
            background: white;
            color: #1a1a1a;
            transform: translateY(-3px);
        }

        .cta-button.secondary {
            background: transparent;
            color: #7cb342;
        }

        .cta-button.secondary:hover {
            background: #7cb342;
            color: white;
        }

        .contact-info {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #333;
        }

        .contact-info h3 {
            color: #7cb342;
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .contact-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: #7cb342;
        }

        .contact-item span {
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 2.5rem;
            margin-top: 3rem;
            border-top: 6px solid #7cb342;
        }

        footer p {
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 0.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .tiers-header h2 {
                font-size: 2.5rem;
            }

            .tier-card {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .tier-actions {
                padding: 1rem 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .contact-details {
                text-align: center;
                grid-template-columns: 1fr;
            }
        }
    
.tier-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.5rem;
}
.tier-header {
    background: none !important;
    padding: 0 !important;
    margin-bottom: 1rem;
}
.tier-content {
    padding: 0 !important;
    margin-bottom: 1rem;
}
.tier-actions {
    padding: 0 !important;
    margin-top: auto;
}
.tier-features {
    list-style: none;
    padding-left: 0 !important;
    margin: 1rem 0;
}
.tier-features li {
    padding-left: 1.5rem !important;
    text-align: left;
}

</style>