    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'HAL Timezone Unlicensed', Arial, sans-serif;
      background-color: #ffffff;
      color: #000000;
      line-height: 1.5;
      overflow-x: hidden;
    }
    
    /* Layout components */
    .main-container {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    
    .header-container {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
    }
    
    .navigation-row {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      margin-top: 22px;
      margin-left: 16px;
      margin-right: 16px;
      padding-left: 20px;
      padding-right: 20px;
    }
    
    .nav-menu {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 24px;
    }
    
    .nav-item {
      font-size: 18px;
      font-family: 'HAL Timezone Unlicensed', Arial, sans-serif;
      font-weight: 400;
      line-height: 38px;
      text-align: left;
      color: #000000;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.3s ease;
    }
    
    .nav-item:hover {
      color: #666666;
    }
    
    .header-line {
      width: 100%;
      height: 1px;
      background-color: #000000;
    }
    
    .project-title-section {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      padding-left: 16px;
      padding-right: 16px;
      margin-top: 20px;
    }
    
    .project-title {
      font-size: 24px;
      font-family: 'HAL Timezone Unlicensed', Arial, sans-serif;
      font-weight: 400;
      line-height: 37px;
      text-align: left;
      color: #040404;
      width: 100%;
    }
    
    .project-subtitle {
      font-size: 20px;
      font-family: 'Switzer', Arial, sans-serif;
      font-weight: 300;
      line-height: 37px;
      text-align: left;
      color: #040404;
    }
    
    .content-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      margin-top: 20px;
    }
    
    .content-line {
      width: 100%;
      height: 1px;
      background-color: #000000;
    }
    
    .main-content-row {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .hero-image-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .hero-image {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    
    .vertical-line {
      width: 1px;
      height: 100%;
      background-color: #000000;
      display: none;
    }
    
    .text-content-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: #ffffff;
      padding: 32px 24px;
    }
    
    .project-description {
      font-size: 20px;
      font-family: 'HAL Timezone Unlicensed', Arial, sans-serif;
      font-weight: 400;
      /* font-style: italic;*/
      line-height: 39px;
      text-align: left;
      color: #000000;
      width: 100%;
    }
    
    .underlined-text {
      text-decoration: underline;
    }
    
    .gallery-section {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      gap: 1px;
      /* margin-top: 20px; */
    }
    
    .gallery-item {
      flex-shrink: 0;
      width: 300px;
      height: auto;
    }
    
    .gallery-image {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    
    .gallery-video {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    
    .more-projects-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 8px;
      /* margin-top: 40px; */
      padding-left: 16px;
      padding-right: 16px;
    }
    
    .more-projects-title {
      font-size: 24px;
      font-family: 'HAL Timezone Unlicensed', Arial, sans-serif;
      font-weight: 400;
      line-height: 44px;
      text-align: left;
      color: #040404;
      margin-left: 16px;
    }
    
    .footer-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      margin-top: 9px;
    }
    
    .footer-nav-row {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      padding-left: 22px;
      padding-right: 22px;
      gap: 20px;
    }
    
    .footer-nav-item {
      font-size: 20px;
      font-family: 'HAL Timezone Unlicensed', Arial, sans-serif;
      font-weight: 400;
      line-height: 40px;
      text-align: center;
      color: #000000;
    }
    
    .footer-icon {
      width: 60px;
      height: auto;
    }
    
    .footer-content {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      margin-top: 16px;
    }
    
    .footer-line {
      width: 100%;
      height: 1px;
      background-color: #000000;
    }
    
    .footer-text {
      font-size: 14px;
      font-family: 'Switzer', Arial, sans-serif;
      font-weight: 400;
      line-height: 27px;
      text-align: center;
      color: #000000;
      margin-top: 20px;
      padding: 0 16px;
    }
    
    /* Typography */
    .brand-title {
      font-size: 18px;
      font-family: 'HAL Timezone Unlicensed', Arial, sans-serif;
      font-weight: 400;
      line-height: 38px;
      text-align: left;
      color: #000000;
    }
    
    /* Interactive states */
    .nav-item:hover {
      color: #666666;
      transition: color 0.3s ease;
    }
    
    .nav-item:focus {
      outline: 2px solid #000000;
      outline-offset: 2px;
    }
    
    /* Responsive media queries */
    @media (min-width: 640px) {
      .navigation-row {
        margin-left: 40px;
        margin-right: 40px;
        padding-left: 40px;
        padding-right: 40px;
      }
      
      .nav-item {
        font-size: 20px;
      }
      
      .brand-title {
        font-size: 24px;
      }
      
      .project-title {
        font-size: 28px;
      }
      
      .project-description {
        font-size: 24px;
      }
      
      .more-projects-title {
        font-size: 28px;
      }
      
      .footer-nav-item {
        font-size: 20px;
      }
      
      .footer-text {
        font-size: 16px;
      }
      
      .project-title-section {
        padding-left: 40px;
        padding-right: 40px;
      }
      
      .text-content-section {
        padding: 48px 40px;
      }
      
      .gallery-item {
        width: 400px;
      }
    }
    
    @media (min-width: 768px) {
      .main-content-row {
        flex-direction: row;
      }
      
      .hero-image-section {
        width: 50%;
        position: relative;
      }
      
      .vertical-line {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
      }
      
      .text-content-section {
        width: 50%;
        padding: 64px 56px;
      }
      
      .project-description {
        font-size: 26px;
      }
      
      .footer-nav-row {
        flex-direction: row;
        gap: 0;
      }
      
      .footer-icon {
        width: 82px;
      }
      
      .gallery-item {
        width: 500px;
      }
    }
    
    @media (min-width: 1024px) {
      .navigation-row {
        /*max-width: 1656px;*/
        margin-left: 76px;
        margin-right: 76px;
        padding-left: 40px;
        padding-right: 40px;
      }
      
      .nav-item {
        font-size: 20px;
      }
      
      .brand-title {
        font-size: 30px;
      }
      
      .nav-menu {
        gap: 336px;
      }
      
      .project-title {
        font-size: 35px;
        width: 62%;
      }
      
      .project-description {
        font-size: 28px;
        width: 86%;
      }
      
      .more-projects-title {
        font-size: 35px;
      }
      
      .footer-nav-item {
        font-size: 32px;
      }
      
      .footer-text {
        font-size: 20px;
      }
      
      .text-content-section {
        padding: 134px 56px;
      }
      
      .gallery-item {
        width: 692px;
      }
      
      .footer-nav-row {
        max-width: 1656px;
        width: 100%;
      }
    }
    
    @media (min-width: 1280px) {
      .gallery-section {
        /* width: 20%; */
        margin-left: auto;
      }
    }

    ul {
        list-style-type: none;
        font-family: 'Switzer', Arial, sans-serif;
      font-weight: lighter;
      font-size: 24px;
    }
    li {
        font-family: 'Switzer', Arial, sans-serif;
      font-weight: 100;
      font-size: 16px;
    }

@font-face {
    font-family: HAL Timezone Unlicensed;
    src: url("font/HALTimezoneUnlicensed-Regular.otf") format("opentype");
}

@font-face {
    font-family: HAL Timezone Unlicensed;
    font-style: italic;
    src: url("font/HALTimezoneUnlicensed-Italic.otf") format("opentype");
}


@font-face {
    font-family: Switzer;
    src: url("font/Switzer-Regular.otf") format("opentype");
}

@font-face {
    font-family: Switzer;
    font-weight: 100;
    src: url("font/Switzer-Light.otf") format("opentype");
}

.object {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    z-index: 0;
}

a{
      font-size: 24px;
      font-family: 'HAL Timezone Unlicensed', Arial, sans-serif;
      font-weight: 400;
      text-align: left;
      color: #000000;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.3s ease;
        background-color: #ffffff;
}
a:hover{
    text-decoration: underline;
}