    .screen-hire-page * {
      box-sizing: border-box;
    }
    .screen-hire-page {
      font-family: Arial, sans-serif;
      background-color: #f9fafa;
      color: #333;
      line-height: 1.6;
    }
    .screen-hire-page header {
      background-color: #fff;
      padding: 2rem 1rem;
      border-bottom: 1px solid #ccc;
      text-align: center;
    }
    .screen-hire-page h1 {
		color: black;
	
      margin: 0;
      font-size: 2rem;
    }
    .screen-hire-page .section {
      padding: 2rem 1rem;
      max-width: 1100px;
      margin: auto;
    }
    .screen-hire-page .cards {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      margin-top: 1.5rem;
    }
    .screen-hire-page .card {
      background-color: #fff;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: center;
    }
    .screen-hire-page .card h3 {
      margin-top: 0;
    }
    .screen-hire-page .card p {
      margin: 0.5rem 0;
    }
    .screen-hire-page .card a {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
    }
	.screen-hire-page .card .view-d a {
      background: #007bff;
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
    }
    .screen-hire-page table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1.5rem;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
		word-break: keep-all;
    }
    .screen-hire-page th, .screen-hire-page td {
      padding: 1rem;
      text-align: left;
      border-bottom: 1px solid #eee;
    }
    .screen-hire-page th {
      background-color: #f3f4f6;
    }
    .screen-hire-page .info-boxes {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    .screen-hire-page .info-box {
      flex: 1 1 280px;
      background: #f3fdfd;
      padding: 1.5rem;
      border-radius: 8px;
    }
    .screen-hire-page .cta {
      text-align: center;
      background: #fff;
      padding: 3rem 1rem;
      border-top: 1px solid #eee;
    }
    .screen-hire-page .cta a {
      background: #007bff;
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
    }
	.responsive-table th {
 	 white-space: nowrap;
     word-break: keep-all;
	}
	td.details-desktop {
    max-width: 300px;
	}
	.nav-d a {
      background: #007bff;
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }
		.nav-a a {
      background: #c90e0e;
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }
@media (max-width: 600px) {
      .screen-hire-page header h1 {
        font-size: 1.5rem;
      }
      .screen-hire-page th, .screen-hire-page td {
        padding: 0.5rem;
      }
    }
/* Hide mobile-specific details by default */
.details-mobile {
  display: none;
}

@media (max-width: 768px) {
  /* Hide the main Details column and header */
  .details-desktop,
  .details-header {
    display: none;
  }

  /* Show the Details content under the screen name */
  .details-mobile {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-top: 4px;
  }

  /* Optional: make table more compact or card-style */
  .responsive-table td {
    padding: 10px 0;
  }

  .responsive-table tr {
    border-bottom: 1px solid #ddd;
  }
}
	 .cta-box-ad {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .cta-box-ad .cta-button {
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
  }

  @media (max-width: 768px) {
    .cta-box-ad {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .cta-box-ad .cta-button {
      width: 100%;
      margin-top: 10px;
    }
  }
	#columnsleft1 h2 {
    text-transform: uppercase;
    color: #F60;
    font-weight: bold;
}
		#columnsleft1 p {
 font-size: 14px
}
	
	  .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .grid-item {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  /* Stack items on screens narrower than 768px */
  @media (max-width: 768px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
  }