body {
  font-family: "Montserrat", sans-serif; /* Apply specific font to the other text */
  margin: 0;
  padding: 0;
}

/* Apply specific font to headings */ 
h1, h2, h3, h4, h5, h6 { font-family: "Open Sans", sans-serif; }

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: #000047;
  color: #FAFAF0;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125em;
  font-weight: bold;
}

.logo img {
  margin-right: 10px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: white;
  text-decoration: none;
}

.menu-icon {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
}

.content {
  padding: 40px;
}

.intro {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(239,77,147,0.3);
  border-radius: 0.5em;
  font-size: 1em;
  padding: 50px 100px;
  margin-bottom: 40px;
  background-color: rgba(239,77,147,0.05);
  color: #121212;
}

.intro h2 {
  display: flex;
  font-size: 1.5em;
}

.intro p {
 line-height: 2em;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;         
  padding: 0; 
  border-radius: 0.5em;
  color: #121212;
}

.product {
  padding: 15px;
  text-align: center;
}

.product img {
  max-width: 100%;
  height: 600px;
  border: 1px solid rgba(0,0,71,0.2);
  object-fit: cover;
  border-radius: 0.5em;
}

.product button {
  padding: 10px 15px;
  margin-top: 10px;
  border: none;
  border-radius: 0.5em;
  background-color: #000047;
  color: white;
  cursor: pointer;
}

.product button:hover {
  background-color: #444;
}

.footer {
  background-color: #000047;
  color: #FAFAF0;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9em;
  margin-top: 40px;
}

/* Responsive (mobile view) */
@media (max-width: 768px) {
  .logo {
    font-size: 0.875em;
  }

  .nav {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .intro {
    font-size: 0.75em;
    padding: 20px 20px;
    margin-bottom: 40px;
    background-color: rgba(239,77,147,0.05);
  }

  .intro h2 {
    display: flex;
    font-size: 1.5em;
  }

  .intro p {
  line-height: 2em;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .product img {
    width: 300px;
    height: 300px;
  }
}
