:root {
  --green-dark: #4d680f;
  --green-light: #8cb345;
  --white: #ffffff;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--green-dark);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
}

header img {
  background-color: #ffffff;
  max-width: 200px;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.2rem;
  margin: 0.5rem 0;
  font-weight: 700;
}

header p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #f4f8ec;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1.2rem;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed #cfd8c3;
}

h2 {
  border-bottom: 3px solid var(--green-light);
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--green-dark);
}

label {
  font-weight: 600;
  display: block;
  margin: 1rem 0 0.3rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #cfd8c3;
  border-radius: 8px;
  font-size: 1rem;
}

.product-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

.product-row span {
  flex: 1;
}

.product-row input {
  width: 90px;
}

.btn {
  display: inline-block;
  background-color: var(--green-dark);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--green-light);
  color: var(--green-dark);
}

footer {
  background-color: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  font-size: 0.95rem;
}

footer img {
  background-color: #ffffff;
  max-width: 140px;
  margin-bottom: 0.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
  .product-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-row input {
    width: 100%;
  }
}
