 /* Hero Section */
        .eval-hero {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            padding: 140px 0 80px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .eval-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }
        
        .eval-hero h1 {
            font-size: 3rem;
            color: #ccccff;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease;
        }
        
        .eval-hero p {
            font-size: 1.25rem;
            opacity: 0.95;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        /* Main Content */
        .eval-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        
        /* Section Styles */
        .eval-section {
            margin-bottom: 4rem;
            animation: fadeIn 0.8s ease both;
        }
        
        .eval-section h2 {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--primary);
            position: relative;
        }
        
        .eval-section h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary);
        }
        
        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .eval-card {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary);
        }
        
        .eval-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-left-color: var(--secondary);
        }
        
        .eval-card.strength {
            border-left-color: var(--success);
        }
        
        .eval-card.weakness {
            border-left-color: var(--warning);
        }
        
        .eval-card h3 {
            color: var(--accent);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .eval-card p {
            color: var(--gray);
            line-height: 1.6;
        }
        
        .card-icon {
            font-size: 1.5rem;
        }
        
        /* Evolution Timeline */
        .evolution-timeline {
            position: relative;
            padding: 2rem 0;
            margin: 2rem 0;
        }
        
        .evolution-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        .timeline-content {
            width: 45%;
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-lg);
        }
        
        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--secondary);
            border: 4px solid white;
            border-radius: 50%;
            box-shadow: var(--shadow-md);
        }
        
        .timeline-date {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        
        .timeline-title {
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-size: 1.125rem;
        }
        
        .timeline-description {
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Action Plan */
        .action-plan {
            background: var(--light);
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            margin-top: 2rem;
        }
        
        .action-item {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            display: flex;
            align-items: start;
            gap: 1rem;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .action-item:hover {
            transform: translateX(10px);
            border-left-color: var(--secondary);
            box-shadow: var(--shadow-sm);
        }
        
        .action-number {
            background: var(--accent);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .action-content h4 {
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        
        .action-content p {
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Progress Bars */
        .skill-progress {
            margin-bottom: 1.5rem;
        }
        
        .skill-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        
        .skill-name {
            color: var(--dark);
            font-weight: 500;
        }
        
        .skill-percentage {
            color: var(--secondary);
            font-weight: 600;
        }
        
        .progress-bar {
            height: 10px;
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
            border-radius: 10px;
            transition: width 1.5s ease;
        }
        
        /* Quote Box */
        .quote-box {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            margin: 3rem 0;
            position: relative;
            border-left: 4px solid var(--secondary);
        }
        
        .quote-box::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 80px;
            color: var(--primary);
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        
        .quote-text {
            font-size: 1.25rem;
            line-height: 1.8;
            color: var(--dark);
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .quote-author {
            text-align: right;
            color: var(--secondary);
            font-weight: 500;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .eval-hero h1 {
                font-size: 2rem;
            }
            
            .timeline-item {
                flex-direction: column !important;
            }
            
            .timeline-content {
                width: 100%;
                margin-left: 30px;
            }
            
            .timeline-dot {
                left: 0;
            }
            
            .evolution-timeline::before {
                left: 10px;
            }
        }