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

:root {
  --color-primary: #E0F2F7;
  --color-accent-green: #A7D9B4;
  --color-gray: #6C7A89;
  --color-white: #FFFFFF;
  --color-dark: #1a1a1a;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  margin: 1.5rem 0 1rem 0;
}

h2 {
  font-size: 2rem;
  color: var(--color-gray);
  margin: 1.5rem 0 1rem 0;
}

h3 {
  font-size: 1.5rem;
  color: var(--color-gray);
  margin: 1.2rem 0 0.8rem 0;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

a:hover {
  color: var(--color-gray);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

header .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

header .nav-links a {
  color: var(--color-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

header .nav-links a:hover {
  color: var(--color-accent-green);
  text-decoration: none;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

section {
  padding: 4rem 2rem;
}

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

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

.hero-block {
  background-color: var(--color-primary);
  padding: 4rem 2rem;
  text-align: center;
}

.hero-block .section-container {
  max-width: 900px;
}

.hero-block img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 8px;
}

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 400px;
  object-fit: cover;
}

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

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

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

.card {
  background-color: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

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

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

.card-primary {
  background-color: var(--color-primary);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--color-white);
}

table th {
  background-color: var(--color-accent-green);
  color: var(--color-white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

table tr:hover {
  background-color: var(--color-primary);
}

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

li {
  margin-bottom: 0.5rem;
}

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

button:hover, .btn:hover {
  background-color: var(--color-gray);
  color: var(--color-white);
  text-decoration: none;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 3px rgba(167,217,180,0.1);
}

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

form {
  max-width: 600px;
}

.disclaimer {
  background-color: var(--color-primary);
  border-left: 4px solid var(--color-accent-green);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.9rem;
}

.highlight {
  background-color: var(--color-primary);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 3rem 2rem;
  margin-top: 3rem;
}

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

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

footer .footer-section h3 {
  margin: 0 0 1rem 0;
  color: var(--color-white);
  font-size: 1.1rem;
}

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

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

footer .footer-section ul li a {
  color: var(--color-primary);
  text-decoration: none;
}

footer .footer-section ul li a:hover {
  color: var(--color-accent-green);
}

footer .footer-contact p {
  margin-bottom: 0.5rem;
}

footer .footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 2rem 0;
}

footer .footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

footer .footer-links {
  text-align: center;
  margin-bottom: 1rem;
}

footer .footer-links a {
  margin: 0 1rem;
  color: var(--color-primary);
  text-decoration: none;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.cookie-content {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.85rem;
}

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

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

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

.cookie-reject:hover {
  background-color: var(--color-gray);
}

.cookie-policy-link {
  color: var(--color-accent-green);
  text-decoration: none;
  cursor: pointer;
}

.cookie-policy-link:hover {
  text-decoration: underline;
}

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

.thank-you-page {
  text-align: center;
  padding: 4rem 2rem;
  min-height: calc(100vh - 80px - 300px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-page h1 {
  color: var(--color-accent-green);
  margin-bottom: 1rem;
}

.thank-you-page a {
  color: var(--color-accent-green);
  text-decoration: none;
  font-weight: 600;
}

.thank-you-page a:hover {
  text-decoration: underline;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 2rem 1rem;
  }

  header {
    padding: 1rem;
  }

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

  header .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
    flex-direction: column;
  }

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

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

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

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

  .cookie-btn {
    width: 100%;
  }

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

  footer .footer-links {
    flex-direction: column;
  }

  footer .footer-links a {
    display: block;
    margin: 0.5rem 0;
  }
}
