  :root {
      --techspec-primary: #1a3a63;
      --techspec-secondary: #1a3a63;
      --techspec-accent: #1a3a63;
      --techspec-light: #f8f9fa;
      --techspec-dark: #212529;
    }

    .heading {
      font-size: 50px;
    }

    .para {
      font-size: 18px;
      font-weight: bold;
    }

    .techspec-top {
      margin-top: 60px;
    }

    .techspec-header h1 {
      font-weight: 700;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .techspec-header p {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 800px;
      margin: 0 auto;
    }

    .techspec-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease;
      margin-bottom: 30px;
    }

    .techspec-card:hover {
      transform: translateY(-5px);
    }

    .techspec-card-header {
      background: linear-gradient(to right, var(--techspec-secondary), #3a86ff);
      color: white;
      padding: 1.2rem;
      font-weight: 600;
      font-size: 20px;
    }

    .techspec-table {
      margin-bottom: 0;
    }

    .techspec-table th {
      background-color: var(--techspec-primary);
      color: white;
      font-weight: 600;
      vertical-align: middle;
       padding: 10px;
    }

    .techspec-table td {
      vertical-align: middle;
    }

    .techspec-table tbody tr:nth-child(odd) {
      background-color: rgba(44, 110, 181, 0.05);
    }

    .techspec-table tbody tr:hover {
      background-color: rgba(44, 110, 181, 0.1);
    }

    .techspec-app-badge {
      display: inline-block;
      background-color: rgb(6 57 107 / 9%);
      color: var(--techspec-accent);
      border-radius: 20px;
      padding: 4px 12px;
      margin: 2px;
      font-size: 15px;
      font-weight: 500;
    }

    .techspec-highlight {
      font-weight: 700;
      color: var(--techspec-secondary);
    }

    .techspec-property {
      font-weight: 600;
      color: var(--techspec-primary);
    }

    .techspec-features {

      border-radius: 12px;
      padding: 25px;

    }

    .techspec-icon {
      background: linear-gradient(to right, var(--techspec-primary), var(--techspec-secondary));
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      color: white;
      font-size: 1.8rem;
    }

    .techspec-footer {
      background: var(--techspec-primary);
      color: rgba(255, 255, 255, 0.8);
      padding: 30px 0;
      margin-top: 40px;
      border-radius: 12px 12px 0 0;
    }

    @media (max-width: 768px) {
      .techspec-table thead {
        display: none;
      }

      .techspec-table,
      .techspec-table tbody,
      .techspec-table tr,
      .techspec-table td {
        display: block;
        width: 100%;
      }

      .techspec-table tr {
        margin-bottom: 20px;
        border: 1px solid #dee2e6;
        border-radius: 8px;
      }

      .techspec-table td {
        padding: 10px 15px;
        text-align: right;
        position: relative;
        padding-left: 50%;
      }

      .techspec-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: calc(50% - 15px);
        padding-right: 10px;
        text-align: left;
        font-weight: 600;
        color: var(--techspec-primary);
      }
    }