:root {
  --primary-color: #37474F;
  --text-dark: #2C2C2C;
  --text-light: #5A5A5A;
  --cream-bg: #FAF7F2;
  --warm-accent: #8B7355;
  --divider: #D4CFC7;
}

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

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

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

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1.5rem;
}

.header-main {
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--warm-accent);
}

.navbar-nav .nav-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 0.8rem 1.2rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.main-content {
  margin-top: 80px;
  padding: 3rem 0;
}

.hero-section {
  background-color: #fff;
  padding: 5rem 0;
  margin-bottom: 4rem;
}

.hero-section h1 {
  margin-bottom: 2rem;
}

.hero-section p {
  font-size: 1.3rem;
  color: var(--text-light);
  line-height: 1.8;
}

.section-divider {
  height: 1px;
  background-color: var(--divider);
  margin: 4rem 0;
}

.content-section {
  padding: 3rem 0;
}

.content-section img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 2px;
  margin: 2rem 0;
}

.img-float-left {
  float: left;
  margin-right: 2.5rem;
  margin-bottom: 1.5rem;
  max-width: 45%;
}

.img-float-right {
  float: right;
  margin-left: 2.5rem;
  margin-bottom: 1.5rem;
  max-width: 45%;
}

.img-full {
  width: 100%;
  margin: 2.5rem 0;
}

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

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

.btn-read-more {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background-color: var(--warm-accent);
  color: #fff;
  text-decoration: none;
}

.faq-item {
  margin-bottom: 2.5rem;
}

.faq-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-form {
  background-color: #fff;
  padding: 3rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 2px;
}

.form-control {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border: 1px solid #D4CFC7;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 2px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(55, 71, 79, 0.15);
}

.footer-main {
  background-color: var(--primary-color);
  color: #fff;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-main h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

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

.footer-main a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-main a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  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-color: #fff;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}

.cookie-banner button {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0.7rem 1.8rem;
  font-size: 0.9rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
  background-color: var(--warm-accent);
}

.educational-notice {
  background-color: #FFF9E6;
  border: 1px solid #E8D99F;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  .img-float-left,
  .img-float-right {
    float: none;
    margin: 2rem auto;
    max-width: 100%;
    display: block;
  }
  
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}
