        .about-hero {
            min-height: 90vh;
            background: linear-gradient(135deg, var(--mint-green) 0%, rgba(255, 255, 255, 0.9) 50%, var(--mint-green) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 176, 80, 0.06) 0%, transparent 70%);
            animation: rotate 40s linear infinite;
        }

        .about-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 176, 80, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 176, 80, 0.04) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 1;
        }

        .about-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--text-dark);
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-stats-about {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .stat-item-about {
            text-align: center;
            padding: 16px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 176, 80, 0.1);
            transition: all 0.3s ease;
        }

        .stat-item-about:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 176, 80, 0.15);
        }

        .stat-number-about {
            display: block;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-green);
            line-height: 1;
        }

        .stat-label-about {
            font-size: 12px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        .about-hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-container {
            position: relative;
            width: 300px;
            height: 300px;
        }

        .hero-image-wrapper {
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(0, 176, 80, 0.2);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 176, 80, 0.2);
            position: relative;
            overflow: visible;
        }

        .hero-icon {
            font-size: 4rem;
            color: var(--primary-green);
            animation: pulse 3s ease-in-out infinite;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 176, 80, 0.3);
        }

        .leaf-1 {
            top: -30px;
            left: 50px;
            animation: float 6s ease-in-out infinite;
        }

        .leaf-2 {
            bottom: -30px;
            right: 50px;
            animation: float 6s ease-in-out infinite 2s;
        }

        .leaf-3 {
            top: 50%;
            left: -30px;
            transform: translateY(-50%);
            animation: float 6s ease-in-out infinite 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }
        }

        .mission-section {
            padding: 100px 0;
            background: var(--white);
        }

        .mission-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .mission-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .mission-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .mission-statement {
            font-size: 1.3rem;
            line-height: 1.6;
            color: var(--text-light);
            margin-bottom: 48px;
            font-weight: 400;
        }

        .mission-values {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .value-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .value-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 176, 80, 0.3);
        }

        .value-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .value-content p {
            color: var(--text-light);
            line-height: 1.5;
            margin: 0;
        }

        .mission-visual {
            display: flex;
            justify-content: center;
        }

        .mission-image {
            width: 100%;
            max-width: 400px;
        }

        .image-placeholder {
            background: linear-gradient(135deg, var(--mint-green), rgba(255, 255, 255, 0.8));
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            border: 1px solid rgba(0, 176, 80, 0.2);
            box-shadow: 0 8px 30px rgba(0, 176, 80, 0.1);
        }

        .image-placeholder i {
            font-size: 4rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .image-placeholder h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .image-placeholder p {
            color: var(--text-light);
            margin: 0;
        }

        .story-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--mint-green) 0%, rgba(255, 255, 255, 0.5) 100%);
        }

        .story-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .story-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .story-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .story-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .story-timeline {
            display: flex;
            flex-direction: column;
            gap: 60px;
            position: relative;
        }

        .story-timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 30px;
            bottom: 30px;
            width: 2px;
            background: linear-gradient(180deg, var(--primary-green), var(--light-green));
        }

        .timeline-item {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            position: relative;
        }

        .timeline-marker {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0, 176, 80, 0.3);
            border: 4px solid white;
            z-index: 2;
            position: relative;
        }

        .timeline-content {
            background: white;
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 176, 80, 0.1);
            border: 1px solid rgba(0, 176, 80, 0.1);
            flex: 1;
        }

        .timeline-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .timeline-content p {
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
        }

        .team-section {
            padding: 100px 0;
            background: var(--white);
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .team-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .team-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .team-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .team-member {
            background: white;
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 176, 80, 0.08);
            border: 1px solid rgba(0, 176, 80, 0.1);
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 176, 80, 0.15);
        }

        .member-avatar {
            margin-bottom: 24px;
            display: flex;
            justify-content: center;
        }

        .avatar-placeholder {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            box-shadow: 0 8px 25px rgba(0, 176, 80, 0.3);
        }

        .member-info h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .member-role {
            color: var(--primary-green);
            font-weight: 500;
            font-size: 16px;
            margin-bottom: 16px;
        }

        .member-bio {
            color: var(--text-light);
            line-height: 1.5;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .member-social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .member-social a {
            width: 36px;
            height: 36px;
            background: var(--mint-green);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .member-social a:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-2px);
        }

        .technology-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--text-dark) 0%, #2D4A2D 100%);
            color: white;
        }

        .technology-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .technology-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .technology-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .technology-header p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .technology-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .tech-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .tech-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(0, 176, 80, 0.3);
            box-shadow: 0 20px 50px rgba(0, 176, 80, 0.2);
        }

        .tech-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 24px;
            box-shadow: 0 8px 25px rgba(0, 176, 80, 0.3);
        }

        .tech-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin-bottom: 16px;
        }

        .tech-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin: 0;
        }

        .about-cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--mint-green) 0%, rgba(255, 255, 255, 0.8) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 30% 30%, rgba(0, 176, 80, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(64, 209, 122, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .about-cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 32px;
            position: relative;
            z-index: 2;
        }

        .about-cta-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .about-cta-content p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .about-cta-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .about-cta-actions .btn-primary,
        .about-cta-actions .btn-secondary {
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .about-cta-actions .btn-primary {
            background: var(--primary-green);
            color: white;
            box-shadow: 0 4px 20px rgba(0, 176, 80, 0.3);
        }

        .about-cta-actions .btn-primary:hover {
            background: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 176, 80, 0.4);
        }

        .about-cta-actions .btn-secondary {
            background: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }

        .about-cta-actions .btn-secondary:hover {
            background: var(--primary-green);
            color: white;
        }

        @media (max-width: 1024px) {
            .about-hero-container {
                gap: 60px;
            }
            
            .mission-content {
                gap: 60px;
            }
            
            .hero-stats-about {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .about-hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            
            .about-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-stats-about {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .mission-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .mission-text {
                order: 1;
            }
            
            .mission-visual {
                order: 0;
            }
            
            .story-timeline::before {
                left: 15px;
            }
            
            .timeline-item {
                gap: 20px;
            }
            
            .timeline-marker {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 24px;
            }
            
            .technology-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .about-cta-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .about-cta-actions .btn-primary,
            .about-cta-actions .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .about-hero {
                padding-top: 100px;
            }
            
            .about-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-stats-about {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .stat-number-about {
                font-size: 1.5rem;
            }
            
            .mission-text h2,
            .story-header h2,
            .team-header h2,
            .technology-header h2,
            .about-cta-content h2 {
                font-size: 2rem;
            }
            
            .mission-statement {
                font-size: 1.1rem;
            }
            
            .hero-image-container {
                width: 250px;
                height: 250px;
            }
            
            .floating-element {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .timeline-content {
                padding: 24px 20px;
            }
            
            .team-member {
                padding: 24px 20px;
            }
            
            .avatar-placeholder {
                width: 100px;
                height: 100px;
                font-size: 2.5rem;
            }
            
            .tech-card {
                padding: 24px 20px;
            }
            
            .tech-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .team-member,
        .tech-card,
        .timeline-item,
        .value-item {
            animation: slideInUp 0.6s ease forwards;
        }

        .hero-image-wrapper {
            animation: fadeInScale 1s ease forwards;
        }

        .team-member:nth-child(1) { animation-delay: 0.1s; }
        .team-member:nth-child(2) { animation-delay: 0.2s; }
        .team-member:nth-child(3) { animation-delay: 0.3s; }
        .team-member:nth-child(4) { animation-delay: 0.4s; }

        .tech-card:nth-child(1) { animation-delay: 0.1s; }
        .tech-card:nth-child(2) { animation-delay: 0.2s; }
        .tech-card:nth-child(3) { animation-delay: 0.3s; }
        .tech-card:nth-child(4) { animation-delay: 0.4s; }

        .timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item:nth-child(2) { animation-delay: 0.4s; }
        .timeline-item:nth-child(3) { animation-delay: 0.6s; }

        .value-item:nth-child(1) { animation-delay: 0.1s; }
        .value-item:nth-child(2) { animation-delay: 0.2s; }
        .value-item:nth-child(3) { animation-delay: 0.3s; }
