:root {
  --color-primary: #2d5f3f;
  --color-accent-beige: #d4c4a8;
  --color-accent-blue: #a8d5e2;
  --color-accent-gold: #b8860b;
  --color-dark: #1a1a1a;
  --color-light: #f5f5f5;
  --color-white: #ffffff;
  --radius-base: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', 'Merriweather', serif;
  background-color: var(--color-white);
  color: var(--color-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

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

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

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

a:hover {
  color: var(--color-accent-gold);
  text-decoration: underline;
}

button, .btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-base);
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
}

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

.btn-primary:hover {
  background-color: #1f4a2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--color-accent-beige);
  color: var(--color-dark);
}

.btn-secondary:hover {
  background-color: #c4b498;
}

.header {
  background-color: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Montserrat', 'Lato', sans-serif;
}

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

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

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

.nav a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .header-content {
    justify-content: space-between;
  }
}

body {
  padding-top: 80px;
}

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

.section {
  padding: 4rem 2rem;
  margin: 0 auto;
}

.section-full-width {
  padding: 4rem 0;
  width: 100%;
}

.section-bg {
  background-color: #f9f9f9;
}

.section-bg-alt {
  background-color: #f2f2f2;
}

.hero {
  background: linear-gradient(rgba(45, 95, 63, 0.7), rgba(45, 95, 63, 0.7)), url('images/hero-background.jpg') center/cover no-repeat;
  color: var(--color-white);
  padding: 8rem 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

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

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

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-base);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
}

.card-content h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card-content p {
  color: #666;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .row {
    grid-template-columns: 1fr;
  }
}

.row-image {
  width: 100%;
  border-radius: var(--radius-base);
  overflow: hidden;
}

.row-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 500px;
}

.row.reverse {
  grid-template-columns: 1fr 1fr;
}

.row.reverse .row-image {
  order: 2;
}

.row.reverse .row-content {
  order: 1;
}

@media (max-width: 768px) {
  .row.reverse {
    grid-template-columns: 1fr;
  }
  
  .row.reverse .row-image {
    order: 1;
  }
  
  .row.reverse .row-content {
    order: 2;
  }
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background-color: var(--color-primary);
  color: var(--color-white);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

th {
  font-weight: 700;
  font-family: 'Montserrat', 'Lato', sans-serif;
}

tbody tr:hover {
  background-color: #f9f9f9;
}

.myth-fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .myth-fact {
    grid-template-columns: 1fr;
  }
}

.myth-item, .fact-item {
  padding: 2rem;
  border-radius: var(--radius-base);
  background-color: #f9f9f9;
}

.myth-item {
  border-left: 4px solid #d9534f;
}

.fact-item {
  border-left: 4px solid var(--color-primary);
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: #666;
  line-height: 1.6;
}

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

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

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer-section h4 {
  color: var(--color-accent-beige);
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: var(--color-accent-beige);
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 196, 168, 0.3);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

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

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

.cookie-content {
  max-width: 1400px;
  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;
  flex-wrap: wrap;
}

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

.cookie-btn-accept {
  background-color: var(--color-accent-gold);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background-color: #9b7505;
}

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

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

.cookie-btn-more {
  background-color: transparent;
  color: var(--color-accent-beige);
  border: 1px solid var(--color-accent-beige);
}

.cookie-btn-more:hover {
  background-color: rgba(212, 196, 168, 0.1);
  color: var(--color-white);
  border-color: var(--color-white);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
}

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

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

.modal-content {
  background-color: var(--color-white);
  border-radius: var(--radius-base);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
}

.modal-header h2 {
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-dark);
  padding: 0;
  width: 30px;
  height: 30px;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
  font-family: 'Montserrat', 'Lato', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
}

.form-disclaimer {
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-accent-gold);
}

.disclaimer-section {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: var(--radius-base);
  border-left: 4px solid var(--color-accent-gold);
  margin: 2rem 0;
}

.disclaimer-section h3 {
  color: var(--color-primary);
}

.education-notice {
  background-color: var(--color-accent-blue);
  color: var(--color-dark);
  padding: 1.5rem;
  border-radius: var(--radius-base);
  margin: 2rem 0;
  text-align: center;
  font-weight: 600;
  border: 1px solid #8bc8d9;
}

.thank-you-message {
  background-color: #d4edda;
  color: #155724;
  padding: 1.5rem;
  border-radius: var(--radius-base);
  margin: 1rem 0;
  text-align: center;
  border: 1px solid #c3e6cb;
  display: none;
}

.thank-you-message.show {
  display: block;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 4rem 1rem;
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 2rem 1rem;
  }
}
