:root {
  --color-bg: #E0E0E0;
  --color-primary: #5C8D89;
  --color-accent1: #C0D6E4;
  --color-accent2: #A4B494;
  --color-dark: #2C2C2C;
  --color-light: #F5F5F5;
  --color-text: #333333;
  --spacing-sm: 24px;
  --spacing-md: 48px;
  --spacing-lg: 96px;
}

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

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-bottom: var(--spacing-lg);
}

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

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

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

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.section-accent {
  background-color: var(--color-light);
}

.section-dark {
  background-color: var(--color-dark);
  color: white;
}

.section-dark h1, .section-dark h2, .section-dark h3 {
  color: white;
}

.section-dark a {
  color: var(--color-accent1);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.card {
  background-color: white;
  padding: var(--spacing-sm);
  border-radius: 4px;
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.card h3 {
  margin-top: 0;
}

button, .btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
}

button:hover, .btn:hover {
  background-color: var(--color-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: white;
}

.disclaimer {
  background-color: var(--color-accent1);
  padding: var(--spacing-sm);
  border-radius: 4px;
  margin: var(--spacing-md) 0;
  border-left: 4px solid var(--color-primary);
}

.disclaimer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-section > * {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--spacing-sm);
}

.hero-content h2 {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.image-large {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: var(--spacing-md) 0;
}

.image-medium {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
  margin: var(--spacing-sm) 0;
}

.image-small {
  width: 100%;
  height: auto;
  max-width: 300px;
  display: block;
  margin: 1rem 0;
}

form {
  background-color: white;
  padding: var(--spacing-sm);
  border-radius: 4px;
  max-width: 600px;
  margin: var(--spacing-md) 0;
}

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

form input, form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-family: inherit;
  font-size: 1rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: white;
  padding: var(--spacing-sm);
  z-index: 1000;
  display: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-sm);
}

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

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

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

.cookie-btn-accept {
  background-color: var(--color-primary);
  color: white;
}

.cookie-btn-accept:hover {
  background-color: var(--color-accent2);
}

.cookie-btn-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn-reject:hover {
  background-color: white;
  color: var(--color-dark);
}

.cookie-btn-more {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  text-decoration: underline;
}

.cookie-btn-more:hover {
  background-color: white;
  color: var(--color-dark);
}

.table-wrap {
  overflow-x: auto;
  margin: var(--spacing-md) 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: var(--color-light);
  font-weight: 600;
  color: var(--color-primary);
}

tr:hover {
  background-color: #f9f9f9;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.1rem;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
}
