 .command-center-section {
      background: #ffffff;
      padding: 80px 20px;
      font-family: 'Segoe UI', Arial, sans-serif;
    }
    .command-center-section .ccs-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 60px;
    }
    .command-center-section .ccs-image {
      flex: 1 1 45%;
      order: 1;
    }
    .command-center-section .ccs-image img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }
    .command-center-section .ccs-content {
      flex: 1 1 55%;
      order: 2;
    }
    .command-center-section .ccs-eyebrow {
      display: inline-block;
      color: #f5a623;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .command-center-section h2 {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 700;
      color: #101828;
      margin: 0 0 24px 0;
      line-height: 1.25;
    }
    .command-center-section p {
      font-size: 16px;
      line-height: 1.8;
      color: #4a5568;
      margin: 0 0 18px 0;
    }
    .command-center-section .ccs-stats {
      display: flex;
      gap: 40px;
      margin-top: 30px;
      flex-wrap: wrap;
    }
    .command-center-section .ccs-stat strong {
      display: block;
      font-size: 26px;
      color: #f5a623;
      font-weight: 700;
    }
    .command-center-section .ccs-stat small {
      font-size: 13.5px;
      color: #667085;
    }

    @media (max-width: 900px) {
      .command-center-section .ccs-inner {
        flex-direction: column;
        gap: 32px;
      }
      .command-center-section .ccs-image,
      .command-center-section .ccs-content {
        flex: 1 1 100%;
        order: initial;
      }
    }