/* General Spacing Styles */
    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .section {
      width: 90%;
      margin: 30px auto;
    }
    .image-container {
      text-align: center;
      margin: 20px 0;
    }
    h1, h2, h3 {
      text-align: center;
      margin: 25px 0 15px 0;
    }
    p {
      text-align: center;
      margin: 15px 0;
    }
    table {
      margin: 25px auto;
    }
    
   
    
    /* Table Styling */
    table.specs {
      width: 90%;
      border-collapse: collapse;
    }
    table.specs td {
      padding: 8px;
      border: 1px solid #ddd;
    }
    table.specs tr.header-row {
      background-color: #333;
      color: white;
    }
    table.specs tr:nth-child(even) {
      background-color: #f2f2f2;
    }