:root {
  --accent-green: #48755C;
  --bg-cream: #FAF8F5;
  --text-dark: #2C2C2C;
  --text-medium: #5A5A5A;
  --text-light: #888888;
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --hover-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--card-shadow);
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-green);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
  color: var(--accent-green);
}

.nav-link {
  color: var(--text-medium);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--accent-green);
  text-decoration: none;
}

.section {
  padding: 5rem 0;
  margin-top: 4rem;
}

.section:first-of-type {
  margin-top: 80px;
}

.card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--accent-green);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #3d6350;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(72, 117, 92, 0.3);
  color: white;
  text-decoration: none;
}

.form-control {
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(72, 117, 92, 0.1);
}

.disclaimer {
  background-color: #F5F5F5;
  border-left: 4px solid var(--accent-green);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.footer {
  background-color: #2C2C2C;
  color: #CCCCCC;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: #CCCCCC;
  font-size: 0.9rem;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-green);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-dialog {
  position: relative;
  margin: 5% auto;
  max-width: 700px;
}

.modal-content {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  border-bottom: 1px solid #E5E5E5;
  padding: 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid #E5E5E5;
  padding: 1rem 1.5rem;
}

.close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-medium);
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1500;
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

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

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

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--card-shadow);
}

.faq-item h4 {
  color: var(--accent-green);
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .image-float-left,
  .image-float-right {
    float: none;
    margin: 1rem auto;
    display: block;
  }
  
  .nav-link {
    padding: 0.5rem 0.5rem;
    font-size: 0.85rem;
  }
}
