@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&family=Lora:wght@400;500&display=swap');

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

:root {
  --primary-color: #4CAF50;
  --accent-gold: #FFC107;
  --accent-blue: #2196F3;
  --accent-brown: #795548;
  --text-primary: #333333;
  --text-secondary: #666666;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

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

li {
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
}

li::marker {
  color: var(--primary-color);
}

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

a:hover {
  color: var(--accent-blue);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

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

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo-text {
  font-family: 'Montserrat', sans-serif;
}

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

body {
  padding-top: 80px;
}

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

.hero {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--bg-white);
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--bg-white);
  font-size: 3.5rem;
}

.hero-content p {
  color: var(--bg-white);
  font-size: 1.2rem;
  line-height: 1.6;
}

.section {
  margin-bottom: 6rem;
  padding: 3rem 0;
}

.section-full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 5rem 2rem;
  margin-bottom: 4rem;
}

.section-full-width.bg-primary {
  background-color: var(--primary-color);
}

.section-full-width.bg-primary h2,
.section-full-width.bg-primary h3,
.section-full-width.bg-primary p {
  color: var(--bg-white);
}

.section-full-width.bg-light {
  background-color: var(--bg-light);
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.two-column-reversed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.two-column-reversed > :first-child {
  order: 2;
}

.two-column-reversed > :last-child {
  order: 1;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3rem 0;
}

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

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

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

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

.btn {
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--accent-gold);
  color: var(--text-primary);
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.disclaimer-block {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-blue);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 4px;
}

.disclaimer-block h3 {
  margin-top: 0;
  color: var(--accent-blue);
}

form {
  margin-top: 2rem;
  max-width: 600px;
}

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

label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 8px rgba(33, 150, 243, 0.2);
}

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

footer {
  background-color: var(--text-primary);
  color: var(--bg-white);
  padding: 4rem 2rem;
  margin-top: 6rem;
  font-family: 'Open Sans', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.footer-section a {
  color: var(--bg-white);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.footer-contact-info {
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-primary);
  color: var(--bg-white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
}

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

.cookie-btn-accept:hover {
  background-color: #45a049;
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
}

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

.cookie-btn-learn {
  background-color: var(--accent-blue);
  color: var(--bg-white);
}

.cookie-btn-learn:hover {
  background-color: #1976d2;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .header-container {
    padding: 1rem;
  }

  nav {
    gap: 1rem;
    flex-direction: column;
  }

  nav a {
    font-size: 0.9rem;
  }

  .hero {
    height: 300px;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .two-column,
  .two-column-reversed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column-reversed > :first-child {
    order: 0;
  }

  .two-column-reversed > :last-child {
    order: 0;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .container {
    padding: 0 1rem;
  }

  .section-full-width {
    padding: 2rem 1rem;
  }
}

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  nav {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.8rem;
  }

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

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

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}

.hero-simple {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 4px solid #FFC107;
}

.hero-simple h1 {
  color: white;
  margin-bottom: 0;
}

.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
  display: block;
}

.section-image-full {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.btn-primary {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--text-primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #FFA800;
  border-color: #FFA800;
  color: var(--text-primary);
}

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.catalog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.catalog-card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.catalog-card-body h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.catalog-card-body h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.catalog-card-body ul {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.catalog-card-body li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.catalog-btn {
  margin-top: auto;
}

.disclaimer-section {
  background-color: #f5f5f5;
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 4px;
}

.disclaimer-section h2 {
  color: var(--primary-color);
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero-simple {
    padding: 2.5rem 1rem;
  }

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