:root {
  --primary: #1A2C3E;
  --secondary: #F5F5F5;
  --neutral-dark: #333333;
  --neutral-light: #FFFFFF;
  --accent-terra: #C07E63;
  --accent-green: #A8D8B9;
  --accent-gray: #E0E0E0;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--neutral-light);
  font-size: 24px;
  font-weight: 600;
}

.logo img {
  width: 40px;
  height: 40px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--neutral-light);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

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

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

.hero {
  background-color: var(--primary);
  color: var(--neutral-light);
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--accent-gray);
}

.section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 500;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--neutral-dark);
  margin-bottom: 20px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

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

.two-column-reverse {
  direction: rtl;
}

.two-column-reverse > * {
  direction: ltr;
}

.card {
  background-color: var(--neutral-light);
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  margin-bottom: 20px;
}

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

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary);
}

.card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.stat-strip {
  background-color: var(--primary);
  color: var(--neutral-light);
  padding: 40px;
  margin: 40px 0;
  border-radius: 4px;
  text-align: center;
}

.stat-item {
  display: inline-block;
  margin: 0 40px;
  vertical-align: top;
}

.stat-number {
  font-size: 32px;
  font-weight: 600;
  color: var(--accent-terra);
}

.stat-label {
  font-size: 14px;
  margin-top: 10px;
}

.list-styled {
  list-style: none;
  margin: 20px 0;
}

.list-styled li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.list-styled li:before {
  content: "•";
  color: var(--accent-terra);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-terra);
  color: var(--neutral-light);
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin: 10px 5px 10px 0;
}

.cta-button:hover {
  background-color: #a66c52;
}

.highlight-box {
  background-color: var(--accent-green);
  background-color: rgba(168, 216, 185, 0.2);
  border-left: 4px solid var(--accent-green);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 4px;
}

.disclaimer {
  background-color: var(--accent-gray);
  padding: 25px;
  border-radius: 4px;
  margin: 40px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--neutral-dark);
}

footer {
  background-color: var(--primary);
  color: var(--neutral-light);
  padding: 60px 0 30px;
  margin-top: 80px;
}

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

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent-terra);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--neutral-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--accent-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

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

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

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

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

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-message {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--accent-terra);
  color: var(--neutral-light);
}

.cookie-accept:hover {
  background-color: #a66c52;
}

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

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

.cookie-more {
  background-color: transparent;
  color: var(--accent-terra);
  text-decoration: underline;
}

.cookie-more:hover {
  opacity: 0.8;
}

.page-title {
  text-align: center;
  margin-bottom: 60px;
}

.page-title h1 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 20px;
}

.content-block {
  margin-bottom: 60px;
}

.content-block h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
  margin-top: 40px;
}

.content-block h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
  margin-top: 30px;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 13px;
  color: rgba(51, 51, 51, 0.7);
}

.breadcrumb a {
  color: var(--accent-terra);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

  .two-column-reverse {
    direction: ltr;
  }

  nav ul {
    gap: 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 50px 0;
  }

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

  .cookie-message {
    width: 100%;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  header .container {
    flex-direction: column;
    gap: 15px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
  }

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

  .stat-item {
    display: block;
    margin: 20px 0;
  }
}
