.hero-section {
            background: linear-gradient(135deg, var(--bg-dark-color) 0%, var(--brand-color) 100%);
            color: var(--title-color-dark);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
            background-size: 200% 200%;
            animation: gradientMove 15s ease infinite;
        }

        @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }


        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="network" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/><line x1="20" y1="20" x2="80" y2="40" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23network)"/></svg>');
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .section-title {
            color: var(--title-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-title.white {
            color: var(--title-color-dark);
        }

        .section-subtitle {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .partnership-types {
            background: var(--bg-color);
            padding: 100px 0;
        }

        .partnership-card {
            background: var(--white-color);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 15px 50px rgba(20, 89, 97, 0.08);
            border: 1px solid var(--border-color-thin);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .partnership-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--brand-color));
            transition: all 0.4s ease;
        }

        .partnership-card:hover::before {
            left: 0;
        }

        .partnership-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(20, 89, 97, 0.15);
        }

        .partnership-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--secondary-color), var(--bg-color-3));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2.5rem;
            color: var(--white-color);
            transition: all 0.3s ease;
        }

        .partnership-card:hover .partnership-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .benefits-section {
            background: var(--white-color);
            padding: 100px 0;
        }

        .benefit-item {
            background: var(--bg-color-2);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 40px 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            background: var(--white-color);
            border-color: var(--secondary-color);
            transform: translateX(10px);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white-color);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .process-section {
            background: var(--bg-color);
            padding: 100px 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            padding: 30px 20px;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--brand-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            font-weight: 700;
            color: var(--white-color);
            position: relative;
            z-index: 2;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--brand-color), var(--secondary-color));
            z-index: 1;
        }

        .process-step:last-child::after {
            display: none;
        }

        .testimonials-section {
            background: var(--white-color);
            padding: 100px 0;
        }

        .testimonial-card {
            background: var(--white-color);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 40px rgba(116, 183, 78, 0.1);
            border: 1px solid var(--border-color);
            height: 100%;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 30px;
            font-size: 6rem;
            color: var(--secondary-color);
            opacity: 0.2;
        }

        .client-info {
            display: flex;
            align-items: center;
            margin-top: 30px;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--brand-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white-color);
            font-weight: 600;
            margin-right: 15px;
        }

        .pricing-section {
            background: var(--white-color);
            padding: 100px 0;
        }

        .pricing-card {
            background: var(--white-color);
            border: 2px solid var(--border-color-thin);
            border-radius: 25px;
            padding: 50px 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            height: 100%;
        }

        .pricing-card.featured {
            border-color: var(--secondary-color);
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(116, 183, 78, 0.15);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary-color);
            color: var(--white-color);
            padding: 8px 30px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            border-color: var(--secondary-color);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(20, 89, 97, 0.12);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--brand-color);
            margin: 20px 0;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        .pricing-features li {
            padding: 8px 0;
            color: var(--text-color);
        }

        .pricing-features li i {
            color: var(--secondary-color);
            margin-right: 10px;
        }

        .contact-section {
            background: linear-gradient(135deg, var(--brand-color) 0%, var(--bg-dark-color) 100%);
            padding: 100px 0;
            color: var(--title-color-dark);
        }

        .contact-form {
            background: var(--white-color);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .form-control, .form-select {
            border: 2px solid var(--border-color-thin);
            border-radius: 10px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(116, 183, 78, 0.25);
        }
        
        .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(116, 183, 78, 0.25);
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--brand-color), var(--secondary-color));
            border: none;
            background-size: 200% 200%;
            background-repeat: no-repeat;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 600;
            color: var(--white-color);
            transition: all 0.3s ease;
            animation: gradientShift 5s ease infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(20, 89, 97, 0.3);
            color: var(--white-color);
        }

        .btn-outline-custom {
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-outline-custom:hover {
            background: var(--secondary-color);
            color: var(--white-color);
            transform: translateY(-2px);
        }

        .stats-banner {
            background: var(--white-color);
            padding: 60px 0;
            text-align: center;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--brand-color);
            margin-bottom: 5px;
        }

        .stat-label {
            color: var(--text-color);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 60px;
            }

            .process-step::after {
                display: none;
            }

            .contact-form {
                padding: 30px;
            }

            .pricing-card.featured {
                transform: none;
                margin-bottom: 30px;
            }
        }

        .text-wrap {
            white-space: normal;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }