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

:root {
  --primary-color: #4CAF50;
  --accent-light: #8BC34A;
  --accent-warm: #FFC107;
  --accent-blue: #2196F3;
  --text-dark: #333333;
  --text-light: #555555;
  --bg-white: #ffffff;
  --border-light: #eeeeee;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

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

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

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

nav a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

body.nav-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

body.nav-open nav ul {
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  padding: 1.5rem 2rem;
  gap: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

main {
  margin-top: 80px;
}

section {
  padding: 80px 20px;
}

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

.section-bg-primary h2,
.section-bg-primary h3 {
  color: white;
}

.section-bg-light {
  background-color: #f9f9f9;
}

.section-bg-accent {
  background-color: #f0f7e8;
}

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

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

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

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

.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

th {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-light);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-warm {
  background-color: var(--accent-warm);
  color: var(--text-dark);
}

.btn-warm:hover {
  background-color: #ffa500;
}

.list-marked {
  list-style: none;
  margin: 1.5rem 0;
}

.list-marked li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.list-marked li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 20px 1.5rem;
  margin-top: 4rem;
}

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

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

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

.footer-section a {
  color: #ccc;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

.hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 200px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.hero-banner h1 {
  color: white;
  position: relative;
  z-index: 2;
}

.hero-banner h3 {
  color: #f0f0f0;
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
  font-weight: 400;
}

.text-center {
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.faq-item {
  margin-bottom: 1.5rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--accent-light);
  color: white;
}

.faq-question h4 {
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: var(--text-light);
  border-top: 1px solid var(--border-light);
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

.cookie-reject {
  background-color: #666;
  color: white;
}

.cookie-reject:hover {
  background-color: #555;
}

.cookie-learn {
  background-color: transparent;
  color: var(--accent-warm);
  border: 1px solid var(--accent-warm);
  padding: 0.5rem 1rem;
}

.cookie-learn:hover {
  background-color: var(--accent-warm);
  color: var(--text-dark);
}

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

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-content {
    padding: 1rem;
  }

  nav ul {
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

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

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

  section {
    padding: 50px 20px;
  }

  main {
    margin-top: 70px;
  }

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

  .cookie-consent {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: flex-end;
  }

  .hero-banner {
    padding: 120px 20px;
  }

  .hero-banner h1 {
    font-size: 1.8rem;
  }

  .hero-banner h3 {
    font-size: 1rem;
  }

  body.nav-open nav ul {
    position: fixed;
    top: 60px;
    flex-direction: column;
    padding: 2rem;
  }
}

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

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1rem;
  }

  section {
    padding: 40px 15px;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }

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

  nav ul {
    padding: 1rem;
  }

  .container {
    padding: 0 15px;
  }
}
