 /* Hero Section */
        .project-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .project-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .hero-title {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            color: white;
            margin-top: 2rem;
            font-weight: 500;
            animation: fadeInUp 0.8s ease 0.4s both;
        }
        
        /* Content Sections */
        .content-section {
            padding: 4rem 0;
        }
        
        .content-section:nth-child(even) {
            background: var(--light);
        }
        
        .section-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .section-description {
            color: var(--gray);
            font-size: 1.125rem;
            line-height: 1.8;
        }
        
        /* Philosophy Card */
        .philosophy-card {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            margin: 3rem 0;
            border-left: 4px solid var(--secondary);
            position: relative;
            overflow: hidden;
        }
        
        .philosophy-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 100px;
            color: var(--primary);
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        
        .philosophy-text {
            font-size: 1.25rem;
            line-height: 1.8;
            color: var(--dark);
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .philosophy-author {
            text-align: right;
            margin-top: 1.5rem;
            color: var(--secondary);
            font-weight: 500;
        }
        
        /* Interest Cards */
        .interests-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .interest-card {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }
        
        .interest-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }
        
        .interest-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .interest-title {
            font-size: 1.25rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        
        .interest-description {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Stage Requirements */
        .requirements-list {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
        }
        
        .requirement-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: var(--light);
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
        }
        
        .requirement-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-sm);
        }
        
        .requirement-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: var(--secondary);
        }
        
        .requirement-content h4 {
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        
        .requirement-content p {
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Skills Development */
        .skills-section {
            background: linear-gradient(135deg, var(--light) 0%, rgba(204, 204, 255, 0.2) 100%);
            padding: 4rem 0;
        }
        
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .skill-category {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
        }
        
        .skill-category h3 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .skill-list {
            list-style: none;
        }
        
        .skill-list li {
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            background: var(--light);
            border-radius: var(--border-radius);
            border-left: 3px solid var(--primary);
            transition: all 0.3s ease;
        }
        
        .skill-list li:hover {
            transform: translateX(5px);
            border-left-color: var(--secondary);
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: var(--primary);
        }
        
        .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.05);
            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;
        }
        
        .timeline-description {
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--accent);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .cta-text {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-white {
            background: white;
            color: var(--accent);
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--accent);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.125rem;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item {
                flex-direction: column !important;
                align-items: flex-start !important;
                padding-left: 60px;
            }
            
            .timeline-content {
                width: 100%;
            }
            
            .timeline-dot {
                left: 30px;
            }
        }