body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 10px;
    background-color: #fff7e6;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card-content h2 {
    font-size: 20px;
    margin: 0 0 10px;
    color: #222;
  }
  
  .card-content p {
    font-size: 14px;
    color: #555;
  }
  
  .card-content .button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #f7b500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .card-content .button:hover {
    background-color: #e09e00;
  }

 /* Contact Section */
#contact {
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-top: 50px;
}

#contact h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.contact-info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
}

.contact-info li a {
  color: #0073e6;
  text-decoration: none;
}

.contact-info li a:hover {
  text-decoration: underline;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 10px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  margin-top: 20px;
  padding: 12px;
  background-color: #0073e6;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form .button:hover {
  background-color: #005bb5;
}


.navbar {
  background-color: #222;
  padding: 15px 0;
  color: white;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.banner {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.banner-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

