        /* Partners Hero Section */
        .partners-hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, rgba(39, 164, 68, 0.1) 0%, rgba(70, 245, 110, 0.05) 100%);
        }
        
        .partners-hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        
        .partners-hero-text {
            flex: 1;
        }
        
        .partners-hero-heading {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .partners-hero-heading span {
            color: var(--primary);
        }
        
        .partners-hero-subheading {
            font-size: 1.2rem;
            color: var(--gray-dark);
            margin-bottom: 30px;
        }
        
        .partners-hero-cta {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .partners-hero-btn {
            background-color: var(--primary);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .partners-hero-btn.outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .partners-hero-btn:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        .partners-hero-btn.outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .partners-hero-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
        
        .partners-hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        /* Benefits Section */
        .benefits {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            color: var(--gray-dark);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .benefit-card {
            background: var(--light);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            background-color: rgba(39, 164, 68, 0.1);
            color: var(--primary);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
        }
        
        .benefit-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .benefit-desc {
            color: var(--gray-dark);
        }
        
        /* Partnership Types */
        .partnership-types {
            padding: 100px 0;
            background-color: var(--gray);
        }
        
        .types-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .type-card {
            background: var(--light);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .type-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .type-icon {
            background-color: rgba(39, 164, 68, 0.1);
            color: var(--primary);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .type-title {
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .type-desc {
            color: var(--gray-dark);
            margin-bottom: 25px;
        }
        
        .type-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
        }
        
        .type-feature {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .type-feature i {
            color: var(--primary);
        }
        
        .type-cta {
            background-color: var(--primary);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
        }
        
        .type-cta:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        /* Partner Logos */
        .partner-logos {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .logos-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .logo-item {
            flex: 1;
            min-width: 150px;
            max-width: 200px;
            text-align: center;
            opacity: 0.7;
            transition: var(--transition);
        }
        
        .logo-item:hover {
            opacity: 1;
        }
        
        .logo-item img {
            max-width: 100%;
            height: auto;
            filter: grayscale(100%);
            transition: var(--transition);
        }
        
        .logo-item:hover img {
            filter: grayscale(0%);
        }
        
        /* Success Stories */
        .success-stories {
            padding: 100px 0;
            background-color: var(--gray);
        }
        
        .stories-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .story-card {
            background: var(--light);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .story-quote {
            font-style: italic;
            margin-bottom: 25px;
            color: var(--dark);
            position: relative;
            padding-left: 20px;
        }
        
        .story-quote::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        
        .story-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--gray);
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details {
            display: flex;
            flex-direction: column;
        }
        
        .author-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .author-role {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .author-company {
            color: var(--gray-dark);
            font-size: 0.9rem;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            position: relative;
        }
        
        .steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background-color: var(--primary);
            z-index: 0;
        }
        
        .step {
            text-align: center;
            width: 22%;
            position: relative;
            z-index: 1;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }
        
        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .step-desc {
            color: var(--gray-dark);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: var(--gray);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--light);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }
        
        .faq-question {
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            color: var(--primary);
        }
        
        .faq-question i {
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            color: var(--gray-dark);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 30px 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
        }
        
        .cta-heading {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-subheading {
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .cta-btn {
            background-color: white;
            color: var(--primary);
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .cta-btn.outline {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 40px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-desc {
            color: #aaa;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background-color: var(--primary);
        }
        
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .footer-link {
            color: #aaa;
            transition: var(--transition);
        }
        
        .footer-link:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .benefits-grid,
            .types-grid,
            .stories-grid,
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .partners-hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .partners-hero-cta {
                justify-content: center;
            }
            
            .steps {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            
            .step {
                width: 100%;
                max-width: 400px;
            }
            
            .steps::before {
                display: none;
            }
            
            .logos-container {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .benefits-grid,
            .types-grid,
            .stories-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }
                       
            .partners-hero-heading {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }