  .btn {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .primary-btn {
            background: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }
        
        .primary-btn:hover {
            background: transparent;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .secondary-btn {
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
        }
        
        .secondary-btn:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .hero-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform-style: preserve-3d;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .hero-image-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        
        /* Introduction Section */
        .payment-intro {
            background: white;
        }
        
        .intro-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .intro-text {
            font-size: 18px;
            line-height: 1.8;
            color: var(--light-text);
        }
        
        /* Solutions Section */
        .payment-solutions {
            background: white;
        }
        
        .section-header {
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-subtitle {
            display: inline-block;
            color: var(--primary-color);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .solution-content p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--light-text);
        }
        
        .solution-features {
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 101, 80, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .feature-icon i {
            color: var(--primary-color);
            font-size: 20px;
        }
        
        .feature-text h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }
        
        .feature-text p {
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
            color: var(--light-text);
        }
        
        .solution-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .solution-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .image-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
        }
        
        /* Features Section */
        .feature-card {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 101, 80, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            background: var(--primary-color);
        }
        
        .feature-card .feature-icon i {
            color: var(--primary-color);
            font-size: 30px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon i {
            color: white;
        }
        
        .feature-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .feature-card p {
            color: var(--light-text);
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }
        
        /* Payment Methods Section */
        .payment-methods {
            background: white;
        }
        
        .payment-methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .method-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 25px;
        }
        
        .method-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .method-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 101, 80, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            transition: all 0.3s ease;
        }
        
        .method-item:hover .method-icon {
            background: var(--primary-color);
        }
        
        .method-icon i {
            color: var(--primary-color);
            font-size: 30px;
            transition: all 0.3s ease;
        }
        
        .method-item:hover .method-icon i {
            color: white;
        }
        
        .method-item span {
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        /* CTA Section */
        .payment-cta {
            position: relative;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
            color: white;
            overflow: hidden;
        }
        
        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/bg/cta-bg.png') no-repeat center;
            background-size: cover;
            opacity: 0.1;
        }
        
        .cta-content h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .cta-content p {
            font-size: 18px;
            opacity: 0.9;
        }
        
        .cta-btn {
            background: var(--primary-color);
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .cta-btn:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Animations */
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 36px;
            }
            .section-title {
                font-size: 32px;
            }
        }
        
        @media (max-width: 991px) {
            .hero-title {
                font-size: 32px;
            }
            
            .hero-image {
                margin-top: 50px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-title {
                font-size: 28px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .cta-content h2 {
                font-size: 26px;
            }
        }
        
        @media (max-width: 575px) {
            .hero-title {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 22px;
            }
        }