  /* 1. THE SETUP - Modern Corporate Tech Palette */
  * {
      box-sizing: border-box;
  }

  :root {
      --navy: #011627;
      --cyan: #38B5FE;
      --white: #FFFFFF;
      --slate: #94a3b8;
      --bg-gray: #f8fafc;
  }

  body {
      background-color: #e2e8f0;
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr;
      margin: 0;
      min-height: 100vh;
      padding: 20px 0;
      place-items: center;
  }

  .slide-container {
      align-items: center;
      background-color: var(--white);
      border-radius: 8px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      font-family: 'Inter', sans-serif;
      height: 720px;
      justify-content: center;
      overflow: hidden;
      padding: 60px;
      position: relative;
      width: 1280px;
  }

  /* 1.1 BACKGROUND STYLING - Subtle Abstract Lines */
  .slide-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(1, 22, 39, 0.02) 25%, transparent 25%) -50px 0,
          linear-gradient(225deg, rgba(1, 22, 39, 0.02) 25%, transparent 25%) -50px 0;
      background-size: 100px 100px;
      z-index: 0;
  }

  .slide-container>* {
      position: relative;
      z-index: 1;
  }

  /* 2. CONSISTENT TYPOGRAPHY */
  h1,
  h2,
  h3 {
      color: var(--navy);
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      margin: 0;
  }

  p,
  li {
      color: #475569;
      font-size: 18px;
      line-height: 1.5;
  }

  .slide-title {
      font-size: 42px;
      font-weight: 600;
      margin-bottom: 40px;
      text-align: left;
      width: 100%;
      border-left: 8px solid var(--cyan);
      padding-left: 25px;
      color: var(--navy);
  }

  .content-area {
      align-items: center;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: center;
      width: 100%;
  }

  /* 3. LAYOUT DEFINITIONS */
  .title-layout {
      text-align: left;
      width: 100%;
  }

  .title-layout h1 {
      font-size: 90px;
      line-height: 1.1;
  }

  .title-layout h1 span {
      color: var(--cyan);
  }

  .title-layout .subtitle {
      font-size: 26px;
      color: var(--slate);
      margin-top: 20px;
  }

  .two-column {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      width: 100%;
      align-items: center;
  }

  .image-wrapper {
      border-radius: 12px;
      height: 400px;
      overflow: hidden;
      width: 100%;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  .image-wrapper img {
      height: 100%;
      width: 100%;
      object-fit: cover;
  }

  .tiled-content {
      display: flex;
      gap: 30px;
      width: 100%;
  }

  .tile {
      flex: 1;
      background-color: var(--bg-gray);
      padding: 40px;
      border-radius: 12px;
      border-bottom: 5px solid var(--cyan);
  }

  .tile h3 {
      font-size: 24px;
      margin-bottom: 15px;
      color: var(--navy);
  }

  .tile .icon {
      color: var(--cyan);
      font-size: 45px;
      margin-bottom: 20px;
  }

  /* Highlight Numbers */
  .highlight-numbers-layout {
      text-align: center;
  }

  .number {
      color: var(--navy);
      font-size: 160px;
      font-weight: 700;
      line-height: 1;
      font-family: 'Poppins', sans-serif;
  }

  .number-label {
      font-size: 32px;
      color: var(--cyan);
      font-weight: 600;
      text-transform: uppercase;
  }

  /* Table */
  .table-layout table {
      width: 100%;
      border-collapse: collapse;
  }

  .table-layout th {
      background-color: var(--navy);
      color: white;
      padding: 20px;
      text-align: left;
  }

  .table-layout td {
      padding: 20px;
      border-bottom: 1px solid #e2e8f0;
  }

  /* Bleed Image Layout */
  .slide-container.bleed-image-layout {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      padding: 0;
      align-items: start;
  }

  .bleed-image-layout .content-container {
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
  }

  .bleed-image-layout img.bleed-image-side {
      height: 720px;
      width: 100%;
      object-fit: cover;
      border-radius: 0;
  }

  /* Timeline */
  .timeline-layout {
      display: flex;
      justify-content: space-between;
      width: 100%;
      position: relative;
      padding-top: 50px;
  }

  .timeline-line {
      position: absolute;
      top: 75px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #e2e8f0;
  }

  .timeline-item {
      position: relative;
      width: 23%;
      text-align: center;
  }

  .timeline-dot {
      width: 30px;
      height: 30px;
      background-color: var(--cyan);
      border-radius: 50%;
      margin: 0 auto 20px;
      border: 6px solid var(--white);
      box-shadow: 0 0 0 4px var(--cyan);
  }

  /* Section Title */
  .section-title-layout {
      text-align: center;
  }

  .section-title-layout hr {
      width: 100px;
      height: 8px;
      background-color: var(--cyan);
      border: none;
      margin-bottom: 30px;
  }

  .section-title-layout h2 {
      font-size: 64px;
  }

  /* Responsive Design for Mobile and Tablet */
  @media (max-width: 1024px) {
      body {
          gap: 0;
          padding: 0;
      }

      .slide-container {
          width: 100%;
          height: auto;
          min-height: 100vh;
          padding: 40px 20px;
          border-radius: 0;
      }
      
      .slide-title {
          font-size: 32px;
          margin-bottom: 25px;
      }
      
      .title-layout h1 {
          font-size: 48px;
      }
      
      .title-layout img {
          max-width: 100%;
          height: auto;
      }
      
      .two-column {
          grid-template-columns: 1fr;
          gap: 30px;
      }

      .tiled-content {
          flex-direction: column;
      }
      
      .image-wrapper {
          height: auto;
          max-height: 300px;
      }
      
      .number {
          font-size: 80px;
      }
      
      .number-label {
          font-size: 20px;
      }
      
      .section-title-layout h2 {
          font-size: 36px;
      }
      
      .slide-container.bleed-image-layout {
          grid-template-columns: 1fr;
          display: flex;
          flex-direction: column;
      }
      
      .bleed-image-layout .content-container {
          padding: 40px 20px;
      }
      
      .bleed-image-layout img.bleed-image-side {
          height: 300px;
          width: 100%;
      }
      
      .timeline-layout {
          flex-direction: column;
          align-items: flex-start;
          padding-top: 20px;
      }
      
      .timeline-line {
          width: 2px;
          height: 100%;
          top: 0;
          left: 14px;
      }
      
      .timeline-item {
          width: 100%;
          display: flex;
          align-items: flex-start;
          text-align: left;
          margin-bottom: 20px;
      }
      
      .timeline-dot {
          margin: 0 20px 0 0;
          z-index: 2;
          flex-shrink: 0;
      }
      
      .table-layout {
          overflow-x: auto;
          width: 100%;
      }
      
      .table-layout table {
          min-width: 600px;
      }
      
      h2[style*="font-size: 70px"], h2[style*="font-size: 80px"] {
          font-size: 40px !important;
      }

      p[style*="font-size: 24px"] {
          font-size: 18px !important;
      }
  }