body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f2f2f2;
  color: #333;
}

.navbar {
  background-color: #12233d;
  padding: 15px;
  text-align: center;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
}

.navbar a:hover {
  color: #b8923f;
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
}

.logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.hero h1 {
  color: #12233d;
}

.hero p {
  max-width: 500px;
  margin: 10px auto;
}

h2 {
  text-align: center;
  color: #12233d;
}

.row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.row img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.row img:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 700px) {
  .row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.price {
  color: #b8923f;
  font-weight: bold;
}

.about-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 20px 50px;
}

.about-section h2 {
  text-align: left;
  margin-top: 30px;
}

.about-section p {
  line-height: 1.6;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.about-card {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px;
  flex: 1;
  min-width: 180px;
}

.about-card h3 {
  color: #12233d;
  margin-top: 0;
}

.contact-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 20px 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-form {
  flex: 2;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
}

.contact-form label {
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.contact-form button {
  margin-top: 15px;
  background-color: #12233d;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #b8923f;
}

.contact-info {
  flex: 1;
  min-width: 200px;
}

.contact-info h2 {
  text-align: left;
  margin-top: 0;
}

.footer {
  background-color: #12233d;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
  border-top: 4px solid #b8923f;
}

.footer p {
  margin: 8px 0;
  font-size: 14px;
}

.footer p:first-child {
  font-size: 15px;
  letter-spacing: 0.5px;
}

.footer a {
  color: #b8923f;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}
