
      /* HERO SECTION */
      .hero {
        position: relative;
        min-height: 63vh;
        display: flex;
        align-items: center;
        overflow: hidden;
      }


      .btn {
        padding: 14px 30px;
        font-size: 1rem;
        border-radius: 4px;
        cursor: pointer;
        transition: 0.3s ease;
      }

      .btn.primary {
        background: #d90000;
        color: white;
        border: none;
      }

      .btn.primary:hover {
        background: #b80000;
      }

      .btn.outline {
        background: transparent;
        color: white;
        border: 2px solid #d90000;
      }

      .btn.outline:hover {
        background: #d90000;
      }

      /* RIGHT IMAGE */
      .hero-image {
        position: absolute;
        right: 0;
        top: 0;
        width: 40%;
        height: 100%;
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
      }

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

      /* RESPONSIVE */
      @media (max-width: 900px) {
        .hero {
          flex-direction: column;
        }

        .hero-content {
          width: 100%;
          padding: 50px 30px;
          text-align: center;
        }

        .hero-content h1 {
          font-size: 2.3rem;
        }

        .hero-buttons {
          justify-content: center;
        }

        .hero-image {
          position: relative;
          width: 100%;
          height: 300px;
          clip-path: none;
        }
      }

      /* ========== PROFESSIONAL AIRCRAFT PANEL REDESIGN ========== */

      /* Premium container with gradient background */
      .aircraft-panel-container {
        background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
        padding: 50px 20px 60px;
        position: relative;
      }

      .aircraft-panel {
        max-width: 1320px;
        margin: 0 auto;
        padding: 40px 20px;
      }

      .aircraft-header {
        text-align: center;
        margin-bottom: 32px;
        position: relative;
        z-index: 1;
      }

      /* Premium logo badge */
      .aircraft-logo {
        width: 169px;
        height: auto;
        max-height: 79px;
        object-fit: contain;
        display: block;
        margin: 0 auto 1rem;
      }

      .aircraft-title {
        font-size: 32px;
        font-weight: 700;
        color: #0a1754;
        margin: 0;
        letter-spacing: 0.5px;
        position: relative;
        display: inline-block;
        padding-bottom: 12px;
      }

      /* Underline accent for title */
      .aircraft-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #db3434, #0a1754);
        border-radius: 2px;
      }

      .aircraft-body {
        display: grid;
        grid-template-columns: 52% 48%;
        gap: 36px;
        align-items: start;
        position: relative;
        z-index: 1;
      }

      /* Default: specs left, image right (for odd panels) */
      .specs {
        order: 1;
      }

      .aircraft-image {
        order: 2;
      }

      /* Alternate layout for even panels: image left, specs right */
      .aircraft-panel:nth-child(even) .specs {
        order: 2;
      }

      .aircraft-panel:nth-child(even) .aircraft-image {
        order: 1;
      }

      .aircraft-panel:nth-child(even) .aircraft-body {
        grid-template-columns: 48% 52%;
      }

      /* Premium framed image container */
      .aircraft-image {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
        padding: 12px;
        box-shadow: 0 16px 48px rgba(10, 23, 84, 0.1);
        border: 1px solid rgba(10, 23, 84, 0.08);
      }

      .aircraft-image::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 2px;
        background: linear-gradient(
          135deg,
          rgba(217, 0, 0, 0.1) 0%,
          transparent 50%,
          rgba(10, 23, 84, 0.05) 100%
        );
        -webkit-mask: linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
      }

      .aircraft-image img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 12px 32px rgba(10, 23, 84, 0.12);
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
          box-shadow 0.45s ease;
        will-change: transform;
      }

      .aircraft-image img:hover {
        transform: translateY(-8px) scale(1.025);
        box-shadow: 0 24px 64px rgba(10, 23, 84, 0.16),
          0 8px 24px rgba(217, 0, 0, 0.08);
      }

      /* Modern specs table styling */
      .specs {
        flex: 1;
        overflow: visible;
      }

      .specs table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border: 1px solid rgba(10, 23, 84, 0.12);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(10, 23, 84, 0.04);
        background: #ffffff;
      }

      .specs thead th {
        background: linear-gradient(180deg, #0a1754 0%, #0d1f5e 100%);
        color: #ffffff;
        font-weight: 700;
        font-size: 16px;
        padding: 8px 18px;
        text-align: center;
        border: none;
        letter-spacing: 0.3px;
      }

      .specs tbody tr {
        transition: background-color 0.2s ease;
        border-bottom: 1px solid rgba(10, 23, 84, 0.06);
      }

      .specs tbody tr:last-child {
        border-bottom: none;
      }

      .specs tbody tr:hover {
        background-color: rgba(10, 23, 84, 0.02);
      }

      .specs th,
      .specs td {
        padding: 5px 18px;
        font-size: 15px;
        color: #2c3e50;
        vertical-align: middle;
        border: none;
      }

      .specs td:first-child {
        font-weight: 600;
        color: #0a1754;
        width: 60%;
        border: 1px solid black;
      }

      .specs td:last-child {
        text-align: right;
        color: #34495e;
        font-weight: 500;
       border: 1px solid black;
      }

      /* Section title rows with red accent */
      .specs .section-title {
        background: linear-gradient(
          90deg,
          rgba(217, 0, 0, 0.08) 0%,
          rgba(217, 0, 0, 0.02) 100%
        );
        color: #0a1754;
        font-weight: 700;
        font-size: 15px;
        padding: 6px 18px;
        position: relative;
        border-left: 4px solid #d90000;
      }

      .specs .section-title::before {
        content: "▸";
        color: #d90000;
        font-size: 14px;
        margin-right: 8px;
        font-weight: 700;
      }

      /* Responsive: tablet */
      @media (max-width: 920px) {
        .aircraft-panel-container {
          padding: 30px 16px 40px;
        }

        .aircraft-panel {
          padding: 24px 20px 32px;
          border-radius: 16px;
        }

        .aircraft-title {
          font-size: 26px;
        }

        .aircraft-body {
          grid-template-columns: 1fr;
          gap: 28px;
        }

        .aircraft-image {
          order: -1;
          max-width: 100%;
        }

        .specs table {
          font-size: 14px;
        }

        .specs th,
        .specs td {
          padding: 12px 14px;
        }
      }

      /* Responsive: mobile */
      @media (max-width: 520px) {
        .aircraft-panel-container {
          padding: 20px 10px 30px;
        }

        .aircraft-panel {
          padding: 20px 16px 24px;
        }

        .aircraft-title {
          font-size: 22px;
        }

        .aircraft-logo {
          width: 70px;
          max-height: 40px;
        }

        .specs thead th {
          font-size: 14px;
          padding: 12px 10px;
        }

        .specs th,
        .specs td {
          padding: 10px 12px;
          font-size: 13px;
        }

        .specs td:first-child {
          width: 55%;
        }
      }