:root {
  --primary: #8A9A5B;
  --accent: #D9927E;
  --dark: #3C4A52;
  --light: #F8F1E9;
  --text: #2C3E50;
  --border: #E8DED3;
}

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

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
  background-color: #FFFFFF;
}

h1 {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

h2 {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

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

.btn {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 146, 126, 0.3);
}

.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-ripple:active::after {
  width: 300px;
  height: 300px;
}

header {
  background-color: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

header.hidden {
  transform: translateY(-100%);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.logo {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--accent);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text);
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 140px 0 180px 0;
}

.section-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

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

.section-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.section-hero h1 {
  color: white;
  font-size: 4rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-two-col {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: center;
}

.section-two-col.reverse {
  grid-template-columns: 40% 60%;
}

.section-two-col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.section-two-col img:hover {
  transform: scale(1.02);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background-color: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background-color: var(--light);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-top: 0;
}

.section-texture {
  background: linear-gradient(135deg, var(--light) 0%, #F5EDE0 100%);
  position: relative;
}

.section-texture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect fill="rgba(0,0,0,0.03)" width="100" height="100"/></pattern></defs><rect fill="%23F8F1E9" width="100" height="100"/><rect fill="url(%23grain)" width="100" height="100"/></svg>');
  pointer-events: none;
}

footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 0 1rem 0;
  font-size: 0.95rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

footer h4 {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

footer a {
  color: #E0E0E0;
  transition: color 0.3s ease;
}

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

footer p {
  margin-bottom: 0.8rem;
  color: #E0E0E0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.disclaimer {
  background-color: var(--light);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.toc {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.toc h3 {
  margin-top: 0;
}

.toc ul {
  list-style-position: inside;
  padding-left: 1rem;
}

.toc li {
  margin-bottom: 0.5rem;
}

.toc a {
  color: var(--primary);
  text-decoration: underline;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

th {
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  text-align: left;
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

tr:hover {
  background-color: var(--light);
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text);
  line-height: 1.8;
}

.quote {
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding-left: 2rem;
  margin: 2rem 0;
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

.thank-you-container {
  text-align: center;
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-message {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text);
}

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

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

.cookie-content {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--primary);
  color: white;
}

.cookie-accept:hover {
  background-color: var(--accent);
}

.cookie-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-learn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-learn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  section {
    padding: 80px 0 100px 0;
  }

  .section-hero {
    height: 50vh;
  }

  .section-hero h1 {
    font-size: 2.5rem;
  }

  .section-two-col,
  .section-two-col.reverse {
    grid-template-columns: 1fr;
  }

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  body {
    font-size: 1rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
