:root {
  --primary-color: #0F5132;
  --light-bg: #F8F9F7;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --border-color: #E0E0E0;
  --white: #FFFFFF;
  --transition: 0.22s ease-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.66;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.25;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--primary-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #0a3625;
}

button {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

nav a:hover {
  color: var(--primary-color);
}

body {
  padding-top: 70px;
}

/* Grid System */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.row {
  display: grid;
  gap: 26px;
  margin-bottom: 3rem;
}

.col-12 {
  grid-column: 1 / -1;
}

.col-6 {
  grid-column: span 6;
}

.col-4 {
  grid-column: span 4;
}

@media (max-width: 768px) {
  .col-6, .col-4 {
    grid-column: 1 / -1;
  }
  
  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
}

/* Hero Section */
#hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 81, 50, 0.3);
  z-index: 1;
}

#hero .content {
  position: relative;
  z-index: 2;
}

#hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
section {
  padding: 4rem 0;
}

section h2 {
  margin-bottom: 2rem;
}

/* Card */
.card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 9px;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: 0 4px 16px rgba(15, 81, 50, 0.1);
}

.card h3 {
  margin-top: 0;
}

/* Images */
img {
  border-radius: 9px;
  max-width: 100%;
  height: auto;
}

.image-left {
  float: left;
  margin: 0 2rem 1.5rem 0;
  max-width: 400px;
}

.image-right {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 400px;
}

@media (max-width: 768px) {
  .image-left, .image-right {
    float: none;
    margin: 1rem 0;
    max-width: 100%;
  }
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 9px;
  font-size: 1rem;
  font-weight: 500;
}

.btn:hover {
  background-color: #0a3625;
}

/* Footer */
footer {
  background-color: var(--light-bg);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  font-size: 0.9rem;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

.disclaimer-text {
  background-color: #FFF8DC;
  padding: 1rem;
  border-radius: 9px;
  border-left: 4px solid var(--primary-color);
  margin: 2rem 0;
  font-size: 0.95rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 9px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.modal-close:hover {
  color: var(--text-dark);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: none;
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#cookie-banner.active {
  display: flex;
}

#cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

#cookie-banner button {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 9px;
  font-weight: 500;
  white-space: nowrap;
}

#cookie-banner button:hover {
  background-color: var(--light-bg);
}

@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  #cookie-banner button {
    align-self: flex-start;
  }
}

/* Alert */
.alert {
  padding: 1rem;
  border-radius: 9px;
  margin-bottom: 1rem;
  animation: slideIn 0.3s ease-out;
}

.alert-success {
  background-color: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
}

/* Utility */
.text-center {
  text-align: center;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.spacer {
  margin-bottom: 2rem;
}

/* FAQ */
.faq-item {
  background: var(--light-bg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 9px;
  cursor: pointer;
  transition: all var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(15, 81, 50, 0.1);
}

.faq-item h4 {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .toggle {
  font-weight: bold;
}

.faq-item .answer {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .answer {
  display: block;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--light-bg);
  border-radius: 9px;
  overflow: hidden;
  transition: all var(--transition);
}

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

.product-card-content {
  padding: 1.5rem;
}

.product-card h3 {
  margin-top: 0;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(15, 81, 50, 0.15);
}

/* Lists */
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.75rem;
}
