        /* Component-specific styles - about-partnership.css */
        
        /* ==================== ABOUT PARTNERSHIP SECTION COMPONENT ==================== */
        .about-partnership {
            padding: 80px 0;
            background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
        }

        .about-partnership::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 70% 20%, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(255, 0, 255, 0.3) 0%, transparent 50%);
            opacity: 0.05;
            z-index: 1;
        }

        .about-partnership__container {
            
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .about-partnership__container .about-intro__problem-statement {
            margin-left: 0;
            text-align: left;
        }

        .about-partnership__container .ai-hero__partnership-tag {
            width: auto;
            margin-bottom: 0;
        }

        /* Section Introduction */
        .about-intro {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-intro__container {
            display: flex;
            justify-content: space-between;
            align-items: end;
            margin-bottom: 30px;
        }

        .about-intro__headline {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
           /* background: linear-gradient(45deg, var(--color-accent-neon-cyan), #00ff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;*/
            /*margin-bottom: 24px;*/
            line-height: 1.2;
        }

        .about-intro__problem-statement {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            color: #cccccc;
            max-width: 600px;
            margin: 0 auto 32px auto;
            line-height: 1.6;
        }

        .about-intro__solution {
            font-size: 1.125rem;
            font-weight: 600;
            /*text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);*/
        }

        .intro__solution__color1 {
            color: #00ff00;
        }

        .intro__solution__color2 {
            color:#00ffff;
        }


        /* Partnership Profiles */
        .partnership-profiles {
            margin-bottom: 80px;
        }

        

        .profiles-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .profile-card {
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 12px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .profile-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-accent-neon-cyan), #00ff00);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .profile-card:hover {
            transform: translateY(-8px);
            border-color: #00ffff;
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
        }

        .profile-card:hover::before {
            transform: scaleX(1);
        }

        .profile-card.vlad::before {
            background: linear-gradient(90deg, var(--color-accent-neon-cyan), #00ff00);
        }

        .profile-card.olivera::before {
            background: linear-gradient(90deg, var(--color-accent-neon-cyan), #00ff00);
        }

        .profile-header {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 24px;
        }

        .profile-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: #0a0a0a;
            position: relative;
            overflow: hidden;
        }

        .profile-avatar.vlad {
            background: linear-gradient(45deg, #00ffff, #007fff);
        }

        .profile-avatar.olivera {
            background: linear-gradient(45deg, #ff00ff, #8a2be2);
        }

        .profile-avatar::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            border-radius: 50%;
            z-index: -1;
        }

        .profile-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .profile-role {
            color: #00ffff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .profile-credentials {
            color: #888888;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .profile-background {
            margin-bottom: 24px;
        }

        .profile-background h4 {
            color: #ffffff;
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .profile-background-icon {
            color: #00ff00;
            font-size: 1rem;
        }

        .profile-background p {
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .profile-expertise {
            margin-bottom: 24px;
        }

        .profile-expertise-h {
            margin-bottom: 10px;
        }

        .expertise-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .expertise-tag {
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            color: #00ffff;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .expertise-tag.vlad {
            background: rgba(0, 255, 255, 0.1);
            border-color: rgba(0, 255, 255, 0.3);
            color: #00ffff;
        }

        .expertise-tag.olivera {
            background: rgba(255, 0, 255, 0.1);
            border-color: rgba(255, 0, 255, 0.3);
            color: #ff00ff;
        }

        .profile-focus {
            background: rgba(0, 255, 0, 0.05);
            border-left: 3px solid #00ff00;
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
        }

        .profile-focus-quote {
            color: #ffffff;
            font-style: italic;
            font-size: 1rem;
            line-height: 1.5;
        }

        .profile-timeline {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 20px;
            padding: 16px;
            background: rgba(17, 17, 17, 0.6);
            border-radius: 8px;
        }

        .timeline-item {
            text-align: center;
        }

        .timeline-number {
            display: block;
            font-size: 1.25rem;
            font-weight: 700;
            color: #00ffff;
            line-height: 1;
        }

        .timeline-label {
            font-size: 0.8rem;
            color: #888888;
            margin-top: 4px;
        }

        /* Partnership Value Section */
        .partnership-value {
            background: rgba(26, 26, 26, 0.6);
            border-radius: 16px;
            padding: 50px;
            text-align: center;
            border: 1px solid rgba(0, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .partnership-value::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
            z-index: 1;
        }

        .partnership-value__content {
            position: relative;
            z-index: 2;
        }

        .partnership-value__headline {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 24px;
            text-align: right;
        }

        .partnership-value__description {
            font-size: 1.125rem;
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 32px;
            max-width: 700px;
            margin-right: auto   ;
            margin-left: 0;
            text-align: left;
        }

        .partnership-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .benefit-item {
            background: rgba(17, 17, 17, 0.6);
            padding: 24px;
            border-radius: 8px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            border-color: #00ffff;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 255, 255, 0.1);
        }

        .benefit-icon {
            color: #00ff00;
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .benefit-title {
            color: #ffffff;
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .benefit-description {
            color: #cccccc;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .partnership-quote {
            margin-top: 40px;
            padding: 32px;
            background: rgba(0, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(0, 255, 255, 0.2);
        }

        .partnership-quote__text {
            font-size: 1.25rem;
            color: #ffffff;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .partnership-quote__attribution {
            color: #00ffff;
            font-size: 0.95rem;
            font-weight: 600;
        }

        /* ==================== ANIMATIONS ==================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 768px) {
            .about-partnership {
                padding: 60px 0;
            }

            .about-partnership__container {
                padding: 0 16px;
            }

            .about-intro {
                margin-bottom: 60px;
            }

            .profiles-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 40px;
            }

            .profile-card {
                padding: 30px;
            }

            .profile-header {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .profile-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .expertise-list {
                justify-content: center;
            }

            .profile-timeline {
                flex-direction: column;
                gap: 12px;
            }

            .partnership-value {
                padding: 30px 20px;
            }

            .partnership-benefits {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .about-intro__headline {
                font-size: clamp(1.5rem, 5vw, 2rem);
            }

            .profile-card {
                padding: 20px;
            }

            .partnership-value {
                padding: 24px 16px;
            }
        }
