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

:root {
  --primary-green: #2E4F4F;
  --accent-gold: #C8AA6E;
  --soft-grey: #D8D8D8;
  --warm-cream: #F5F5DC;
  --dark-text: #1a1a1a;
  --light-border: #e8e8e8;
  --base-spacing: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Garamond', serif;
  color: var(--dark-text);
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  color: var(--primary-green);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--primary-green);
  color: var(--warm-cream);
  padding: 1.5rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--warm-cream);
  text-decoration: none;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

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

nav a {
  color: var(--warm-cream);
  font-size: 1rem;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
  text-decoration: none;
}

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

.full-container {
  max-width: 100%;
}

.hero-section {
  background-color: var(--warm-cream);
  padding: 120px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.3rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section {
  padding: 120px 2rem;
  border-bottom: 1px solid var(--light-border);
}

.section:last-child {
  border-bottom: none;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.text-content {
  line-height: 1.8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.card {
  background: var(--warm-cream);
  border: 1px solid var(--soft-grey);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.card h3 {
  color: var(--primary-green);
  margin-top: 0;
}

.insight-panel {
  background: linear-gradient(135deg, var(--primary-green) 0%, #3a5f5f 100%);
  color: var(--warm-cream);
  padding: 3rem;
  border-radius: 8px;
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(46, 79, 79, 0.3);
}

.insight-panel h3 {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 1rem;
}

.insight-panel p {
  color: var(--warm-cream);
  line-height: 1.9;
}

.disclaimer {
  background: var(--soft-grey);
  border-left: 4px solid var(--accent-gold);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 4px;
  font-style: italic;
  color: #333;
}

.disclaimer strong {
  color: var(--primary-green);
  font-style: normal;
}

button, .btn {
  background-color: var(--accent-gold);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: #b8985f;
  transform: scale(1.02);
}

button:active {
  transform: scale(0.98);
}

form {
  background: var(--warm-cream);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--soft-grey);
  max-width: 600px;
  margin: 2rem auto;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
  font-weight: 600;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
}

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

input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(200, 170, 110, 0.1);
}

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

footer {
  background-color: var(--primary-green);
  color: var(--warm-cream);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 245, 220, 0.2);
  padding-bottom: 3rem;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--warm-cream);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 245, 220, 0.2);
  color: rgba(245, 245, 220, 0.8);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-green);
  color: var(--warm-cream);
  padding: 2rem;
  display: none;
  z-index: 2000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

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

.cookie-text a {
  color: var(--accent-gold);
}

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

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

.cookie-accept {
  background-color: var(--accent-gold);
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #b8985f;
}

.cookie-decline {
  background-color: transparent;
  border: 1px solid var(--warm-cream);
  color: var(--warm-cream);
}

.cookie-decline:hover {
  background-color: rgba(245, 245, 220, 0.1);
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero-section {
    padding: 80px 1.5rem;
  }

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

  .section {
    padding: 80px 1.5rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column.reverse {
    direction: ltr;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
  }

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

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

  .insight-panel {
    padding: 2rem;
  }

  form {
    padding: 2rem;
  }

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

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

  .cookie-btn {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
