:root {
  --primary: #5a7a8f;
  --accent-terracotta: #c67c6f;
  --accent-sage: #7a9b8e;
  --accent-cream: #f5f1e8;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
  --border-light: #d5d8dc;
  --bg-light: #fafbfc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

header {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

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

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

nav a:hover,
nav a.active {
  color: var(--accent-cream);
  border-bottom-color: var(--accent-cream);
}

main {
  min-height: calc(100vh - 200px);
}

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

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

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

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  margin: 2rem 0 1rem 0;
  line-height: 1.3;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem 0;
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
}

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

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

.intro-section {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(90, 122, 143, 0.9) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 6rem 2rem;
}

.intro-section h1 {
  color: var(--text-light);
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.intro-section p {
  color: var(--accent-cream);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

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

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

.card h3 {
  color: var(--accent-terracotta);
  margin-top: 0;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.text-image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.text-image-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.text-image-section.reversed {
  direction: rtl;
}

.text-image-section.reversed > * {
  direction: ltr;
}

.full-width-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accent-box {
  background-color: var(--accent-cream);
  border-left: 4px solid var(--accent-terracotta);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.accent-box p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--text-dark);
}

.button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}

.button:hover {
  background-color: transparent;
  color: var(--primary);
}

.button-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.button-secondary:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

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

li {
  margin-bottom: 0.5rem;
}

footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 3rem 2rem;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-section a {
  color: var(--text-light);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-cream);
  text-decoration: none;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1.5rem 2rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.cookie-decline {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-light);
}

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

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

  h2 {
    font-size: 1.75rem;
  }

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

  nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .text-image-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-section h1 {
    font-size: 2.5rem;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  section {
    padding: 3rem 0;
  }
}

.disclaimer {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

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

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.breadcrumb a {
  color: var(--accent-terracotta);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

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

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

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-top: 0;
  color: var(--primary);
}

.blog-card-meta {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--accent-terracotta);
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
  color: var(--accent-sage);
}

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

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(90, 122, 143, 0.1);
}

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

.success-message {
  background-color: var(--accent-sage);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

.success-message h2 {
  color: white;
  margin-top: 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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