@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Inter:wght@300;400&display=swap');
:root {
  --primary: #1b4332;
  --accent: #d8f3dc;
  --gold: #c6a962;
  --text: #2f3e34;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f4f8f5;
  color: var(--text);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

nav a{
margin:0 10px;
color:white;
text-decoration:none;
}

.hero{
text-align:center;
padding:100px 20px;
background:#e7efe9;
}

.button{
background:#14532d;
color:white;
padding:12px 24px;
text-decoration:none;
}

.page-title{
text-align:center;
margin-top:40px;
}

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
padding:40px;
}

.product {
  background: white;
  padding: 25px;
  margin: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.product:hover {
  transform: translateY(-5px);
}

button {
  background: var(--primary);
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}

button:hover {
  background: #163a28;
}
.product {
  background: #f9f9f9;
  padding: 20px;
  margin: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.product h3 {
  color: #1b4332;
}

.product p {
  font-size: 14px;
  line-height: 1.5;
}

button {
  background: #2d6a4f;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #1b4332;
}

body {
  background-color: #f1f8f4;
  font-family: Arial, sans-serif;
}

.page-title {
  text-align: center;
  font-size: 2.2rem;
  margin: 30px 0;
  color: var(--primary);
}

.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.logo img {
  height: 60px;
}

@media (max-width: 768px) {
  .products {
    flex-direction: column;
    align-items: center;
  }

  .product {
    width: 90%;
  }
}

@media (max-width: 768px) {
  button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    display: block;
    margin: 5px 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 1.8rem;
  }
}

.trust {
  font-size: 13px;
  color: #777;
  margin-top: 10px;
  line-height: 1.6;
}
.product p {
  margin: 6px 0;
}
.product p {
  margin: 6px 0;
}

.trust {
  font-size: 13px;
  color: #777;
  margin-top: 10px;
  line-height: 1.6;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.product {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

button {
  background: #b48a5a;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #9c7448;
}

.product h3 {
  margin-bottom: 10px;
}

.product select {
  margin-top: 10px;
  padding: 8px;
  width: 100%;
  border-radius: 6px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo a {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #222;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #b48a5a;
}

.nav-links a {
  letter-spacing: 0.5px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}
