

stage-hero {
            background: linear-gradient(135deg, var(--primary-color), #134E4A);
            padding: 8rem 0 4rem;
            text-align: center;
            color: white;
        }
        
        .stage-hero h1 {
            font-family: var(--title-font);
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .stage-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            
        }
        
        .stage-card {
            background: black;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }

        .stage-card h3{
             margin-bottom: 1.5rem;
            color: var(--text-color)
        }

        .mission-card h3, .mission-card h4, .mission-card p {
            margin-bottom: 1.5rem;
            color: var(--text-color)
        }
        
        .stage-header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            padding: 2rem;
            color: white;
        }
        
        .stage-header h2 {
            font-family: var(--title-font);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        
        .stage-meta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        .stage-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .stage-content {
            padding: 2rem;
        }
        
        .stage-description {
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .stage-description h3 {
            color: var(--text-color);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        
        .stage-description ul {
            list-style: none;
            padding-left: 0;
        }
        
        .stage-description li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .stage-description li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        
        .stage-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .stage-photo {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        
        .stage-photo:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .stage-photo img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .stage-photo figcaption {
            padding: 1rem;
            background: var(--bg-light);
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .tools-section {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-top: 2rem;
        }
        
        .tools-section h3 {
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }
        
        .tools-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            color: var(--text-muted);
        }
        
        .tool-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            background: var(--white);
            border: 1px solid #e2e8f0;
            border-radius: 2rem;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        
        .tool-tag:hover {
            border-color: var(--primary-color);
            background: var(--secondary-color);
        }
        
        .tool-tag i {
            color: var(--primary-color);
        }
        
        .mission-card {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary-color);
        }
        
        .mission-card h4 {
            color: var(--text-color);
            margin-bottom: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .stage-hero h1 {
                font-size: 2rem;
            }
            .stage-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }