    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    
    .header-container {
      position: relative;
      background: url('imgs/header.png');
      background-size: cover;
      color: white;
      padding: 2rem;
    }
    
    .workshop-title {
      font-size: 0.8rem;
      color: #fff;
      opacity: 0.8;
      margin-bottom: 1rem;
    }
    
    .main-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin: 0;
      padding: 0;
      text-align:  center;
    }
    
    .green-line {
      height: 3px;
      background-color: #92d050;
      margin: 1rem 0;
      width: 100%;
    }
    
    .subtitle {
      font-size: 2rem;
      font-weight: bold;
      margin: 1rem 0;
      line-height: 1.2;
      text-align: center;
    }
    
    .header-question {
      font-style: italic;
      margin-top: 2rem;
      font-size: 1.1rem;
      color: #ccc;
    }

    .content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }

    .question {
      text-align: center;
      font-style: italic;
      font-size: 1.2rem;
      margin: 2rem 0;
    }

    .location {
      text-align: center;
      font-size: 1.1rem;
      margin-bottom: 3rem;
    }

    .section-title {
      font-size: 2rem;
      font-weight: bold;
      margin: 2rem 0 1.5rem;
    }

    .description {
      margin-bottom: 2rem;
    }

    .emph {
      font-style: italic;
    }
    
    .topics-list {
      list-style-type: square;
      padding-left: 2rem;
    }

    .topics-list li {
      margin-bottom: 1rem;
    }

    .highlight {
      font-weight: bold;
    }
    .section-separator {
      border-top: 1px dashed #ccc;
      margin: 4rem 0;
    }
    .subsection-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: #333;
      margin: 1.5rem 0 1rem;
    }
    
    .small-title {
      font-size: 1.2rem;
      font-weight: 600;
      font-style: italic;
      color: #444;
      margin: 1.5rem 0 0.8rem;
    }
    
    .mini-title {
      font-size: 1.1rem;
      font-weight: normal;
      font-style: italic;
      color: #555;
      margin: 1.2rem 0 0.5rem;
      border-bottom: 1px solid #eee;
      padding-bottom: 0.3rem;
      display: inline-block;
    }

    .speakers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .speaker-card {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .speaker-image-container {
      width: 100%;
      padding-bottom: 100%; /* Creates a perfect square */
      position: relative;
      margin-bottom: 1rem;
    }

    .speaker-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 4px;
    }

    .speaker-info {
      width: 100%;
      text-align: center;
      margin-top: 1rem;
    }

    .speaker-name {
      font-size: 1.2rem;
      font-weight: bold;
      margin: 0.5rem 0;
    }

    .speaker-title {
      font-size: 0.9rem;
      line-height: 1.4;
      color: #333;
    }

    .organizers-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .advisory-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(200px, 300px)); /* Controls max image width */
      gap: 2rem;
      justify-content: space-evenly;
      margin: 2rem auto;
      padding: 0 2rem;
    }

    @media (max-width: 1024px) {
      .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .organizers-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 640px) {
      .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .organizers-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }