  /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
        }



        img.title {
      padding: 2rem 1.8rem;
      width:600px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

        div.content {
            border-top: 2px solid #eae6e1;
            line-height: 1.6;
            color: #333333;
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 40px;
            background-color: #ffffff;
        }

        .gallery-sub {
            text-align: center;
      color: #6b6a69;
      padding: 2rem 1.5rem;
      font-size: 1rem;
      margin-top: 0.4rem;
      font-weight: 400;
    }

        /* Typography */
        h1 {
            font-size: 24pt;
            font-weight: 700;
            color: #434343;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .navigate {
            padding: 0px !important;
            border-bottom: 2px solid #eae6e1;
        }

        .date {
            font-size: 12pt;
            color: #666666;
            margin: 15px 0 5px 0;
        }

        .details {
            font-size: 12pt;
            color: #666666;
            margin: 10px 0;
        }

        .location {
            font-size: 12pt;
            color: #666666;
            margin: 5px 0 20px 0;
        }

        /* Images */
        .image-container {
            margin: 30px 0 10px 0;
            width: 100%;
            text-align: center;
        }

        .image-container img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            
        }

        .caption {
            font-size: 9pt;
            color: #666666;
            text-align: center;
            margin-top: 8px;
            margin-bottom: 20px;
            font-style: normal;
        }

        /* Text Content */
        .project-description {
            font-size: 12pt;
            color: #666666;
            margin: 30px 0;
            line-height: 1.6;
        }

        .project-description p {
            margin-bottom: 15px;
        }

        .project-description em {
            font-style: italic;
            color: #666666;
        }

        /* Special layout for illustrations */
        .illustration-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
            justify-content: center;
        }

        .illustration-item {
            flex: 1;
            min-width: 240px;
            text-align: center;
        }

        .illustration-item img {
            max-width: 100%;
            height: auto;
            margin-bottom: 8px;
        }

        .illustration-caption {
            font-size: 8pt;
            color: #666666;
            text-align: center;
        }

        /* Workshop section */
        .workshop-section {
            margin: 40px 0;
        }

        .gallery-footer {
      text-align: center;
      margin-top: 2.8rem;
      padding-top: 1.2rem;
      font-size: 0.8rem;
      color: #9b9a98;
      border-top: 1px solid #ece6e0;
    }

        /* Responsive Design */
        @media (max-width: 600px) {
            body {
                padding: 30px 20px;
            }
            
            h1 {
                font-size: 22pt;
            }
            
            .illustration-grid {
                flex-direction: column;
                gap: 20px;
            }
            img.title {
      padding: 2rem 1.8rem;
      width:100%;
    }
        }

        /* Separator */
        hr {
            border: none;
            border-top: 1px solid #eee;
            margin: 30px 0;
        }
    