   /* abel-regular - latin */
    @font-face {
      font-display: swap;
      font-family: 'Abel';
      font-style: normal;
      font-weight: 400;
      src: url('../fonts/abel-v18-latin-regular.woff2') format('woff2');
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Abel', sans-serif;
      line-height: 1.6;
      color: #333;
      background: #f8f9fa;
      font-size: 16px;
      letter-spacing: 0.5px;
    }

    /* Navigation Bar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 25px rgba(0, 0, 0, 0.15);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo {
      font-size: 1.8rem;
      font-weight: 400;
      color: #1f2937;
      text-decoration: none;
      letter-spacing: 2px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1001;
    }

    .nav-logo svg {
      fill: #000000;
      width: 2.2em;
      height: 2.2em;
    }

    .nav-menu {
      display: flex;
      gap: 30px;
      list-style: none;
      align-items: center;
    }

    .nav-menu a {
      color: #4b5563;
      text-decoration: none;
      font-size: 1.2rem;
      letter-spacing: 1px;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #6366f1;
      transition: width 0.3s ease;
    }

    .nav-menu a:hover {
      color: #6366f1;
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .nav-menu a.active {
      color: #6366f1;
    }

    /* Mobile Menu Toggle Button */
    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
      z-index: 1001;
    }

    .mobile-toggle span {
      width: 28px;
      height: 3px;
      background: #1f2937;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .mobile-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translateY(11px);
    }

    .mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-11px);
    }

    /* Main Section */
    .main-section {
      margin-top: 80px;
      min-height: calc(100vh - 140px);
      padding: 40px 20px;
      background: #f8f9fa;
    }

    .content-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    /* Top Row - 3 areas */
    .top-row {
      display: grid;
      grid-template-columns: 100px 1fr 2fr;
      gap: 30px;
      min-height: 600px;
    }

    /* Area A - Rotated Title */
    .title-box {
      #background: linear-gradient(135deg, #6366f1, #8b5cf6);
      #display: flex;
      align-items: center;
      justify-content: center;
      #border-radius: 10px;
      #box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .title-box h1 {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-size: 2.5rem;
      font-weight: 400;
      letter-spacing: 3px;
      color: rgb(14, 14, 14);
      text-transform: uppercase;
    }

    /* Area B - Image 9:16 */
    .image-box-1 {
      background: white;
      #border-radius: 10px;
      #box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .image-box-1 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 9/16;
    }

    /* Area C - Text (50% of row) */
    .text-box-1 {
      #background: white;
      #border-radius: 10px;
      #box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .text-box-1 h2 {
      font-size: 2rem;
      color: #1f2937;
      margin-bottom: 20px;
      font-weight: 400;
      letter-spacing: 2px;
    }

    .text-box-1 p {
      font-size: 1.1rem;
      color: #6b7280;
      line-height: 1.8;
      letter-spacing: 0.5px;
      margin-bottom: 15px;
    }

    /* Bottom Row - 2 areas */
    .bottom-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      min-height: 500px;
    }

    /* Area D - Text (50% width) */
    .text-box-2 {
      #background: white;
      #border-radius: 10px;
      #box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .text-box-2 h2 {
      font-size: 2rem;
      color: #1f2937;
      margin-bottom: 20px;
      font-weight: 400;
      letter-spacing: 2px;
    }

    .text-box-2 p {
      font-size: 1.1rem;
      color: #6b7280;
      line-height: 1.8;
      letter-spacing: 0.5px;
      margin-bottom: 15px;
    }

    /* Area E - Centered Image 9:16 */
    .image-box-2 {
     # background: white;
     # border-radius: 10px;
     # box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .image-box-2 img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      aspect-ratio: 9/16;
      border-radius: 5px;
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #2c3e50, #34495e);
      color: white;
      padding: 30px 20px;
      text-align: center;
      font-family: 'Abel', sans-serif;
      letter-spacing: 1px;
    }

    footer p {
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .mobile-toggle {
        display: flex;
      }

      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
      }

      .nav-menu.active {
        right: 0;
      }

      .nav-menu li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f3f4f6;
      }

      .nav-menu li:last-child {
        border-bottom: none;
      }

      .nav-menu a {
        display: block;
        font-size: 1.3rem;
        width: 100%;
      }

      .nav-menu a::after {
        bottom: -15px;
      }

      .nav-logo {
        font-size: 1.4rem;
      }

      .nav-logo svg {
        width: 1.5em;
        height: 1.5em;
      }

      /* Overlay when menu is open */
      body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
      }

      /* Responsive Layout - Single Column */
      .top-row {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
      }

      .bottom-row {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
      }

      /* Unrotate title and adjust styling */
      .title-box {
        min-height: 80px;
      }

      .title-box h1 {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 2rem;
      }

      .text-box-1,
      .text-box-2 {
        padding: 25px;
      }

      .text-box-1 h2,
      .text-box-2 h2 {
        font-size: 1.5rem;
      }

      .text-box-1 p,
      .text-box-2 p {
        font-size: 1rem;
      }

      .image-box-1,
      .image-box-2 {
        min-height: 400px;
      }

      /* Order: a-b-c-e-d */
      .title-box {
        order: 1;
      }

      .image-box-1 {
        order: 2;
      }

      .text-box-1 {
        order: 3;
      }

      .image-box-2 {
        order: 4;
      }

      .text-box-2 {
        order: 5;
      }

      .content-wrapper {
        display: flex;
        flex-direction: column;
      }

      .top-row,
      .bottom-row {
        display: flex;
        flex-direction: column;
      }
    }

    @media (max-width: 480px) {
      .nav-container {
        padding: 12px 15px;
      }

      .nav-logo {
        font-size: 1.2rem;
      }

      .nav-menu {
        width: 250px;
        padding: 70px 25px 25px;
      }

      .nav-menu a {
        font-size: 1.1rem;
      }

      .title-box h1 {
        font-size: 1.5rem;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }