
:root {
    --primary-color: #33adae;
    --secondary-color: #333333;
    --accent-color: #009688;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

/* Update color references throughout the CSS */
body {
    background-color: var(--light-color);
    color: var(--secondary-color);
}
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1, h2, h3 {
    color: var(--secondary-color) !important;
}

        
        /* Typography */
        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
       
            font-weight: 700;
        }
        
        h2 {
            font-size: 2rem;
            margin-bottom: 15px;
       
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
       
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1rem;
        }
        
        /* Hero Section */
        .hero {
            background: var(--gradient);
            color: white;
            border-radius: 10px;
            padding: 60px 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .hero h1 {
            color: white !important;
            font-size: 2.8rem;
            max-width: 700px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn-primary {
    background-color: white;
    color: var(--primary-color);
}
        .btn-primary:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }
        
        /* Services Section */
        .services {
            margin-bottom: 40px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(51, 173, 174, 0.1); 
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .service-icon i {
            font-size: 24px;
            color: var(--primary-color);
        }
        
        /* Benefits Section */
        .benefits {
            background-color: rgba(51, 173, 174, 0.05); /* very light shade of primary color */
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .benefit-icon {
            min-width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        /* Steps Section */
        .steps-section {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }
        
        .steps-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .step-item {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 20px;
            position: relative;
        }
        
        .step-item:not(:last-child):after {
            content: "→";
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: #cbd5e0;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--gradient);
            color: white;
            border-radius: 10px;
            padding: 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        
        .cta-content {
            flex: 1;
            min-width: 300px;
        }
        
        .cta-content h2 {
            color: white !important;
            margin-bottom: 15px;
        }
        
        .cta-content p {
            margin-bottom: 0;
        }
        
        .cta-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        /* Payment Methods */
        .payment-methods {
            margin-top: 40px;
        }
        
        .payment-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            margin-top: 20px;
        }
        
        .payment-logo {
            height: 40px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        
        .payment-logo:hover {
            opacity: 1;
        }
        
        /* Business Types Section */
        .business-types {
            margin-top: 40px;
            margin-bottom: 40px;
        }
        
        .business-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .business-type {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .business-type:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--primary-color)
        }
        
        .business-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero {
                padding: 40px 20px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .step-item:not(:last-child):after {
                content: "↓";
                position: absolute;
                right: 50%;
                bottom: -10px;
                top: auto;
                transform: translateX(50%);
            }
        }