     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fafafa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
          background: #f5f5f5;
          display: flex;
          justify-content: center;
          min-height: 45vh;
        }

        .hero-container {
          display: grid;
          grid-template-columns: 1fr 1fr;
          max-width: 1400px;
          width: 100%;
        }

        .hero-content {
          display: flex;
          flex-direction: column;
          justify-content: center;
          padding: 3rem 4rem 3rem;
          background: #f5f5f5;
        }

        .hero-title {
          font-size: 4rem;
          font-weight: 300;
          line-height: 1.1;
          margin-bottom: 2rem;
          color: #2c3e50;
          letter-spacing: -0.02em;
        }

        .hero-subtitle {
          font-size: 1.3rem;
          font-weight: 400;
          line-height: 1.5;
          color: #666;
          margin-bottom: 3rem;
          max-width: 500px;
        }

        .hero-image {
          display: flex;
          align-items: center;
          justify-content: center;
          background: #f5f5f5;
          position: relative;
          overflow: hidden;
        }

        .hero-image img {
          max-width: 90%;
          max-height: 80%;
          object-fit: contain;
        }

        .project-meta {
            background: white;
            padding: 40px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .meta-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .meta-item h3 {
            color: #3b82f6;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .meta-item p {
            font-size: 1rem;
            font-weight: 500;
        }

        .content-section {
            background: white;
            margin: 30px 0;
            padding: 50px 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .content-section h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
            border-bottom: 3px solid #3b82f6;
            padding-bottom: 10px;
        }

        .content-section h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem 0;
            color: #34495e;
        }

        .content-section p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 30px 0;
        }

        .problem-solution {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }

        .problem-box, .solution-box {
            padding: 30px;
            border-radius: 8px;
        }

        .problem-box {
            background: #fff5f5;
            border-left: 4px solid #f56565;
        }

        .solution-box {
            background: #f0fff4;
            border-left: 4px solid #48bb78;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .metric-card {
            background: #f8f9ff;
            padding: 30px 20px;
            text-align: center;
            border-radius: 8px;
            border: 2px solid #e2e8f0;
        }

        .metric-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3b82f6;
            display: block;
        }

        .metric-label {
            font-size: 0.9rem;
            color: #64748b;
            margin-top: 5px;
        }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.process-step {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}



        /* Artifacts Button */
        .artifacts-button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 10px 16px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            margin-top: auto;
            transition: background 0.3s ease;
        }

        .artifacts-button:hover {
            background: #2563eb;
        }

        /* PERSONAS STYLING */
        .personas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .persona-card {
            background: #f8f9ff;
            padding: 25px;
            border-radius: 8px;
            border: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .persona-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            flex-shrink: 0;
            object-fit: cover;
        }

        .persona-content {
            flex: 1;
        }

        .persona-card h4 {
            color: #3b82f6;
            font-size: 1.1rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .persona-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            text-align: center;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 1001;
        }

        .lightbox-close:hover {
            opacity: 0.7;
        }

        .lightbox img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .gallery-navigation {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }

        .nav-button {
            background: rgba(59, 130, 246, 0.8);
            color: white;
            border: none;
            font-size: 24px;
            padding: 15px 20px;
            cursor: pointer;
            border-radius: 4px;
            pointer-events: all;
            transition: background 0.3s ease;
        }

        .nav-button:hover {
            background: rgba(59, 130, 246, 1);
        }

        .nav-button.prev {
            margin-left: -60px;
        }

        .nav-button.next {
            margin-right: -60px;
        }

        .gallery-counter {
            color: white;
            margin-top: 20px;
            font-size: 16px;
        }

        .gallery-caption {
            color: white;
            margin-top: 10px;
            font-size: 14px;
            opacity: 0.8;
        }

        .back-nav {
            padding: 30px 0;
            text-align: center;
        }

        .back-nav a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
            padding: 12px 24px;
            border: 2px solid #3b82f6;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .back-nav a:hover {
            background: #3b82f6;
            color: white;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
            }
            
            .two-column,
            .problem-solution {
                grid-template-columns: 1fr;
            }
            
            .personas-grid {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 0 15px;
            }

            .nav-button.prev {
                margin-left: -40px;
            }

            .nav-button.next {
                margin-right: -40px;
            }
        }

        /* Quote Cards Styling */
        .quotes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .quote-card {
            background: #f8f9ff;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            position: relative;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .quote-mark {
            font-size: 4rem;
            color: #3b82f6;
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .quote-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #374151;
            font-style: italic;
            margin: 20px 0 15px 0;
            position: relative;
            z-index: 1;
        }

        .quote-attribution {
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 600;
            border-top: 2px solid #e5e7eb;
            padding-top: 15px;
        }
.problem-box,
.solution-box {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 8px;
    border: none;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.215);
}

.problem-box{

    border-left: 4px solid #f56565;
}

.solution-box{

    border-left: 4px solid #65f59a;

}

.problem-box img,
.solution-box img {
    width: 100%;
    height: auto;
    margin-top: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 0;
    background: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.215);
}
.problem-box h3,
.solution-box h3 {
margin: 0 0 15px 0;

}