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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  background-color: #f5f2ed;
  color: #3d3d3d;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  color: #2a2a2a;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

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

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

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

h4 {
  font-size: 1.25rem;
}

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

a {
  color: #5a7a7a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

a:hover {
  border-bottom-color: #5a7a7a;
}

header {
  background-color: #faf8f5;
  border-bottom: 1px solid #e8e4de;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.5px;
}

.navbar-brand:hover {
  border-bottom: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.95rem;
  color: #3d3d3d;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #5a7a7a;
  border-bottom: 1px solid #5a7a7a;
}

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

section {
  padding: 4rem 0;
}

.hero {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn 0.8s ease-out;
}

.hero-full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 350px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.hero-full-width img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: 1.5px solid #5a7a7a;
  background-color: transparent;
  color: #5a7a7a;
  text-decoration: none;
  border-radius: 1px;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn:hover {
  background-color: #5a7a7a;
  color: #faf8f5;
  border-bottom: none;
}

.btn-primary {
  background-color: #4a6d6d;
  color: #faf8f5;
  border-color: #4a6d6d;
}

.btn-primary:hover {
  background-color: #3d5a5a;
  border-color: #3d5a5a;
}

.btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 2rem;
  color: #2a2a2a;
}

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

.split-section.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn 0.8s ease-out;
}

.wide-section {
  width: 100%;
  margin: 2rem 0;
}

.wide-image {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn 0.8s ease-out;
}

.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-list li {
  padding-left: 0;
  border-left: 3px solid #8a9a8a;
  padding-left: 1.5rem;
}

.content-list strong {
  color: #2a2a2a;
  font-weight: 600;
}

.content-card {
  background-color: #faf8f5;
  padding: 1.8rem;
  border-radius: 1px;
  border: 1px solid #e8e4de;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.content-card h4 {
  margin-bottom: 0.5rem;
}

.content-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.glossary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.glossary-item {
  padding: 1.5rem;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  border-radius: 1px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.glossary-item dt {
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

.glossary-item dd {
  color: #4a4a4a;
  margin: 0;
  font-size: 0.95rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  padding: 1.8rem;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  border-radius: 1px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.testimonial p {
  font-style: italic;
  color: #3d3d3d;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #2a2a2a;
  font-size: 0.95rem;
}

.faq {
  margin-top: 2rem;
}

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

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

.faq-question {
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
  cursor: pointer;
  user-select: none;
  padding: 0.5rem 0;
}

.faq-answer {
  color: #4a4a4a;
  line-height: 1.7;
  font-size: 0.95rem;
  display: none;
  animation: slideDown 0.3s ease;
}

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

.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-image {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.contact-form {
  background-color: #faf8f5;
  padding: 2rem;
  border: 1px solid #e8e4de;
  border-radius: 1px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2a2a2a;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #d8d2ca;
  border-radius: 1px;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  color: #3d3d3d;
  background-color: #fdf9f5;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5a7a7a;
  box-shadow: 0 0 0 2px rgba(90, 122, 122, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 0.8rem;
  background-color: #4a6d6d;
  color: #faf8f5;
  border: none;
  border-radius: 1px;
  font-size: 0.95rem;
  font-family: 'Georgia', serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.form-submit:hover {
  background-color: #3d5a5a;
}

.footer {
  background-color: #3d3d3d;
  color: #e8e4de;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #faf8f5;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #b8b0a0;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: #faf8f5;
}

.footer-bottom {
  border-top: 1px solid #4a4a4a;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #8a8a7a;
}

.thank-you-message {
  text-align: center;
  padding: 3rem 0;
}

.thank-you-message h1 {
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2a2a2a;
  color: #e8e4de;
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.4s ease;
}

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

.cookie-text a {
  color: #b8b0a0;
  border-bottom: 1px solid #b8b0a0;
}

.cookie-text a:hover {
  color: #faf8f5;
  border-bottom-color: #faf8f5;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid #8a8a7a;
  background-color: transparent;
  color: #e8e4de;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.cookie-btn:hover {
  background-color: #8a8a7a;
  color: #2a2a2a;
}

.cookie-btn-accept {
  background-color: #5a7a7a;
  border-color: #5a7a7a;
}

.cookie-btn-accept:hover {
  background-color: #4a6d6d;
  border-color: #4a6d6d;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-content,
  .split-section,
  .form-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .split-section.reverse > * {
    direction: ltr;
  }

  .hero-image,
  .split-image,
  .wide-image,
  .form-image {
    height: 280px;
  }

  .glossary,
  .testimonials {
    grid-template-columns: 1fr;
  }

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .glossary-item,
  .testimonial {
    padding: 1rem;
  }

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

  .cookie-banner {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
