@font-face {
  font-family: 'MyCustomFont';
  src: url('EurostileExtendedBlack.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyCustomBodyFont';
  src: url('Gotham-Book copy.otf') format('otf');
  font-weight: normal;
  font-style: normal;
}



body {
      margin: 0;
      font-family: Arial, sans-serif;
    }
a.btn{
	    border: solid 2px #000;
    padding: 15px 10px;
    border-radius: 2rem;
    text-decoration: none;
    color: #000;
}
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      border-bottom: 1px solid #ddd;
    }
    header img {
      height: 40px;
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 20px;
      margin: 0;
      padding: 0;
    }
	nav ul li {
      padding:0 4rem;
    }
    nav a {
      text-decoration: none;
      color: #000;
    }
    .hero {
      position: relative;
      text-align: center;
    }
    .hero img {
      width: 100%;
      height: auto;
    }
    .form-section {
      max-width: 900px;
      margin: 40px auto;
      padding: 20px;
      background: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .form-section h2 {
      margin-bottom: 20px;
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }
    .form-grid input, .form-grid select, textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      width: 100%;
    }
    textarea {
      grid-column: span 2;
    }
    .submit-btn {
      margin-top: 20px;
      padding: 10px 20px;
      background: #0b1b3f;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    footer {
      background: #0db4ac;
      color: white;
      text-align: center;
      padding: 30px 10px;
    }
footer .locations{
font-weight: bold;
    font-size: 1.25rem;	
}
    footer nav {
      margin-bottom: 10px;
    }
    footer nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
    }
	  
	  .footerLogo{
		width:14rem;  
	  }


.products {
  padding: 2em;
  text-align: center;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
}

.product-card {
  width: 200px;
}

.product-card {
font-weight: 600;
    font-size: 1.9rem;
}

.product-card img {
  width: 100%;
  height: auto;
}

	  
    @media(max-width: 768px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
      nav ul {
        flex-direction: column;
        gap: 10px;
      }
    }