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

:root {
  --primary: #2F4F4F;
  --accent-1: #A4C3A4;
  --accent-2: #F5DEB3;
  --accent-3: #BC8F8F;
  --white: #FFFFFF;
  --light-gray: #F8F8F6;
  --dark-gray: #3A3A3A;
  --border: #E5E5E0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

h1, h2, h3 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.8rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
}

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

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

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

.logo {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

nav a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

nav a:hover {
  color: var(--accent-1);
  border-bottom-color: var(--accent-1);
}

body {
  padding-top: 70px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(47, 79, 79, 0.75) 0%, rgba(164, 195, 164, 0.65) 100%), 
              url('images/hero-background.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
  color: var(--accent-2);
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
}

/* DISCLAIMER BANNER */
.banner-disclaimer {
  background-color: var(--light-gray);
  padding: 1.5rem 2rem;
  text-align: center;
  border-bottom: 2px solid var(--accent-1);
}

.banner-disclaimer p {
  font-size: 0.95rem;
  color: var(--primary);
  margin: 0;
  font-weight: 500;
}

/* SECTIONS */
section {
  padding: 4rem 2rem;
}

section.full-width {
  padding: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-light {
  background-color: var(--light-gray);
}

.section-white {
  background-color: var(--white);
}

.section-accent {
  background-color: rgba(164, 195, 164, 0.1);
}

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

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transform: translateY(-4px);
  border-color: var(--accent-1);
}

.card h3 {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

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

/* CTA BUTTONS */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  cursor: pointer;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.btn:hover {
  background-color: var(--accent-1);
  border-color: var(--accent-1);
  color: var(--primary);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* FAQ SECTION */
.faq-item {
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-1);
  padding-left: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-1);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  background: var(--accent-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding-bottom: 1rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

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

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* FORM */
.form-container {
  max-width: 500px;
  margin: 2rem auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(164, 195, 164, 0.1);
}

.form-disclaimer {
  background-color: var(--light-gray);
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-3);
}

/* FOOTER */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: var(--accent-2);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.footer-section a {
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.footer-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* MODALS */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  overflow: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark-gray);
  background: none;
  border: none;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

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

.modal h2 {
  margin-top: 0;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  z-index: 998;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

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

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

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

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

.cookie-learn {
  background: none;
  color: var(--accent-2);
  text-decoration: underline;
  padding: 0.6rem 0;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

.cookie-learn:hover {
  color: var(--white);
}

/* THANK YOU MESSAGE */
.thank-you-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
  z-index: 1001;
  display: none;
}

.thank-you-modal.active {
  display: block;
}

.thank-you-modal h2 {
  color: var(--accent-1);
}

/* SUCCESS MESSAGE */
.success-message {
  display: none;
  background-color: rgba(164, 195, 164, 0.2);
  border-left: 4px solid var(--accent-1);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  color: var(--primary);
}

.success-message.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

  nav ul {
    gap: 1rem;
    font-size: 0.85rem;
  }

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

  .three-col {
    grid-template-columns: 1fr;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  section {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .hero {
    padding: 4rem 1.5rem;
    min-height: 350px;
  }

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