@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --primary-color: #4E342E;
  --bg-cream: #FFF8E7;
  --text-dark: #3E2723;
  --text-muted: #6D4C41;
  --border-light: #D7CCC8;
  --white: #FFFFFF;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

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

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

a:hover {
  color: #795548;
  text-decoration: underline;
}

header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(78, 52, 46, 0.1);
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid var(--border-light);
}

.logo {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  cursor: pointer;
}

.logo:hover {
  text-decoration: none;
  color: #795548;
}

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

nav ul li a {
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover {
  border-bottom: 2px solid var(--primary-color);
  text-decoration: none;
}

main {
  margin-top: 90px;
  min-height: calc(100vh - 90px);
}

.hero {
  background: linear-gradient(135deg, #F5E6D3 0%, #FFF8E7 100%);
  padding: 5rem 0;
  text-align: center;
  border-bottom: 3px double var(--border-light);
}

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

.hero p {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(78, 52, 46, 0.15);
}

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

.section:last-of-type {
  border-bottom: none;
}

.content-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(78, 52, 46, 0.15);
  margin: 1.5rem 0;
}

.content-image.float-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.content-image.float-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.btn-narrative {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 4px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  text-decoration: none;
}

.btn-narrative:hover {
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(78, 52, 46, 0.2);
}

.disclaimer-box {
  background: #FFF3E0;
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.disclaimer-box p {
  margin-bottom: 0.75rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

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

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

.faq-item h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.contact-form {
  max-width: 600px;
  margin: 2rem 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--border-light);
  margin: 2rem 0;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 4px double var(--border-light);
}

footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

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

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(78, 52, 46, 0.2);
  border-top: 3px solid var(--primary-color);
  z-index: 2000;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cookie-banner button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cookie-banner button:hover {
  background: #795548;
}

.educational-notice {
  background: #E8F5E9;
  border: 2px solid #4CAF50;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  text-align: center;
}

.educational-notice p {
  margin: 0;
  font-weight: bold;
  color: #2E7D32;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .content-image.float-left,
  .content-image.float-right {
    float: none;
    margin: 1.5rem auto;
    display: block;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 16px;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .btn-narrative {
    display: block;
    width: 100%;
    text-align: center;
  }
}
