:root {
        --brand-orange: #e8772e;
        --text-dark: #333333;
        --text-gray: #666666;
        --bg-light: #f8f9fa;
      }

      body {
        background-color: #ffffff;
        color: var(--text-dark);
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      }

      /* === Hero Section === */
      .hero-section {
        position: relative;
        width: 100%;
        min-height: 500px;
        background-color: rgba(0, 0, 0, 0.5);
        background-blend-mode: overlay;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 80px 15px;
        margin-top: 0 !important;
        text-align: center;
      }
      .hero-desktop {
        /* Background image is called inline via PbootCMS tags in HTML */
      }
      .hero-mobile {
        /* Background image is called inline via PbootCMS tags in HTML */
        display: none;
        min-height: 300px;
      }
      .hero-content {
        max-width: 1000px;
        width: 100%;
        color: #fff;
      }
      .hero-title {
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
        text-transform: capitalize;
        letter-spacing: 2px;
      }
      .hero-desc {
        font-size: 18px;
        line-height: 1.8;
        color: #f0f0f0;
        max-width: 800px;
        margin: 0 auto;
      }

      /* === Container === */
      .bess-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 15px;
      }

      /* === Section Titles === */
      .section-heading {
        text-align: center;
        margin-bottom: 50px;
      }
      .section-heading h2 {
        font-size: 36px;
        font-weight: 700;
        color: #111;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
      }
      .section-heading h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: var(--brand-orange);
        border-radius: 2px;
      }
      .section-heading p {
        font-size: 16px;
        color: #666;
        max-width: 800px;
        margin: 0 auto;
      }

      /* === Intro Section === */
      .intro-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 80px;
        background: transparent;
        border-radius: 12px;
        box-shadow: none;
        overflow: hidden;
      }
      .intro-text-col {
        flex: 1 1 50%;
        padding: 50px;
      }
      .intro-img-col {
        flex: 1 1 50%;
      }
      .intro-img-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 400px;
      }
      .intro-text-col h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #111;
      }
      .intro-text-col p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 15px;
      }

      /* === 3 Cards Section (Tech) === */
      .tech-cards-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 80px;
      }
      .tech-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
        border: 1px solid #eee;
      }
      .tech-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      }
      .tech-card-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
      }
      .tech-card-body {
        padding: 30px;
        text-align: center;
      }
      .tech-card-body h4 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #111;
      }
      .tech-card-body p {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 0;
      }

      /* === 8 Features Grid === */
      .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 80px;
      }
      .feature-item {
        background: var(--bg-light);
        padding: 40px 20px;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid transparent;
      }
      .feature-item:hover {
        background: #fff;
        border-color: var(--brand-orange);
        box-shadow: 0 10px 25px rgba(232, 119, 46, 0.1);
        transform: translateY(-5px);
      }
      .feature-icon {
        font-size: 40px;
        color: var(--brand-orange);
        margin-bottom: 20px;
      }
      .feature-title {
        font-size: 18px;
        font-weight: 700;
        color: #111;
        margin-bottom: 15px;
      }
      .feature-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
      }

      /* === Alternating Rows (Applications & Structure) === */
      .alt-row-wrapper {
        margin-bottom: 40px;
        background: transparent;
        border-radius: 16px;
        box-shadow: none;
        overflow: hidden;
        border: none;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
      }
      .alt-row-wrapper.reverse {
        flex-direction: row-reverse;
      }
      .alt-text-col {
        padding: 50px;
        flex: 1 1 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .alt-img-col {
        flex: 1 1 50%;
        min-height: 350px;
      }
      .alt-img-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .alt-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #111;
        position: relative;
        padding-bottom: 15px;
      }
      .alt-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background-color: var(--brand-orange);
      }
      .alt-desc {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
      }
      .custom-bullet-list {
        list-style: none;
        padding-left: 0;
        margin: 0;
      }
      .custom-bullet-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 1.6;
        color: #555;
      }
      .custom-bullet-list li::before {
        content: "\f058";
        font-family: "FontAwesome";
        color: var(--brand-orange);
        font-size: 18px;
        position: absolute;
        left: 0;
        top: 2px;
      }

      /* === Customer Cases & Certificates (Retained) === */
      .section-heading {
        text-align: center;
        margin: 80px 0 40px;
      }
      .section-heading h2 {
        font-size: 36px;
        font-weight: bold;
        color: #333;
        margin-bottom: 0;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
      }
      .section-heading h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: var(--brand-orange);
      }
      .case-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        margin-bottom: 0;
      }
      .case-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      }
      .case-card a {
        text-decoration: none;
        color: #333;
        display: block;
      }
      .case-img-box {
        overflow: hidden;
        aspect-ratio: 4/3;
        background-color: #f8f9fa;
      }
      .case-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      .case-card:hover .case-img-box img {
        transform: scale(1.05);
      }
      .case-info {
        padding: 20px;
        text-align: center;
      }
      .case-info h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        transition: color 0.3s;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .case-card:hover .case-info h4 {
        color: var(--brand-orange);
      }

      .cert-simple-wrapper {
        position: relative;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto 60px;
        overflow: hidden;
      }
      .cert-simple-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
      }
      .cert-simple-item {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 50px;
        box-sizing: border-box;
      }
      .cert-simple-item img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      }
      .cert-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background-color: rgba(0, 0, 0, 0.6);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s;
        border-radius: 4px;
        font-size: 20px;
      }
      .cert-nav-btn:hover {
        background-color: var(--brand-orange);
        border-color: var(--brand-orange);
      }
      .cert-prev {
        left: 0px;
      }
      .cert-next {
        right: 0px;
      }

      /* === Inquiry Section === */
      .inquiry-section { padding: 80px 0; background: #fff; }
      .inquiry-wrapper {
          background: #fff;
          border-radius: 30px;
          padding: 50px;
          box-shadow: 0 40px 80px rgba(0,0,0,0.05);
          border: 1px solid #f0f0f0;
          max-width: 900px;
          margin: 0 auto;
      }
      .modern-form .form-control {
          background: #f9f9fb !important;
          border: 1px solid #e5e5e5 !important;
          border-radius: 12px !important;
          height: 50px;
          margin-bottom: 20px;
          transition: 0.3s;
          color: #333;
          width: 100%;
          padding: 10px 15px;
          box-sizing: border-box;
      }
      textarea.form-control {
          height: auto;
      }
      .modern-form .form-control:focus {
          border-color: var(--brand-orange) !important;
          background: #fff !important;
          box-shadow: 0 0 0 4px rgba(255,106,0,0.1) !important;
          outline: none;
      }
      .cta-submit-btn {
          background: var(--brand-orange);
          color: #fff;
          border: none;
          padding: 18px 70px;
          font-size: 16px;
          font-weight: 700;
          border-radius: 50px;
          cursor: pointer;
          transition: 0.3s;
          box-shadow: 0 10px 20px rgba(255,106,0,0.25);
          margin-top: 10px;
      }
      .cta-submit-btn:hover {
          transform: translateY(-3px);
          box-shadow: 0 15px 30px rgba(255,106,0,0.4);
          background: #E65C00;
      }
      .form-row {
          display: flex;
          flex-wrap: wrap;
          margin-right: -10px;
          margin-left: -10px;
      }
      .form-col-6 {
          flex: 0 0 50%;
          max-width: 50%;
          padding-right: 10px;
          padding-left: 10px;
          box-sizing: border-box;
      }
      .form-col-12 {
          flex: 0 0 100%;
          max-width: 100%;
          padding-right: 10px;
          padding-left: 10px;
          box-sizing: border-box;
      }

      /* === Responsive === */
      @media (max-width: 991px) {
        .hero-title { font-size: 42px; }
        .tech-cards-wrapper { grid-template-columns: repeat(2, 1fr); }
        .features-grid { grid-template-columns: repeat(2, 1fr); }
        .intro-text-col, .alt-text-col { padding: 30px; }
      }

      @media (max-width: 767px) {
        .hero-section { margin-top: 0; padding: 60px 15px; }
        .hero-desktop { display: none; }
        .hero-mobile { display: flex; }
        .hero-title { font-size: 32px; }
        .hero-desc { font-size: 15px; }
        
        .bess-container { padding: 40px 15px; }
        .section-heading h2 { font-size: 28px; }
        
        .intro-row { flex-direction: column; }
        .intro-img-col img { min-height: 250px; }
        
        .tech-cards-wrapper { grid-template-columns: 1fr; }
        .features-grid { grid-template-columns: 1fr; gap: 20px; }
        
        .alt-row-wrapper, .alt-row-wrapper.reverse { flex-direction: column; }
        .alt-img-col { order: -1; min-height: 250px; }
        
        .cert-simple-item { padding: 0 30px; }
        .cert-nav-btn { width: 35px; height: 35px; font-size: 16px; }
        
        /* Inquiry Form Mobile */
        .inquiry-section { padding: 40px 0; }
        .inquiry-wrapper { padding: 30px 20px; }
        .form-col-6 { flex: 0 0 100%; max-width: 100%; }
        .cta-submit-btn { width: 100%; }
      }
