:root {
  --primary-color: #A8D8B9;
  --accent-1: #1E6F7A;
  --accent-2: #F2C76E;
  --accent-3: #E7887E;
  --bg-light: #FAFAF8;
  --bg-white: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --border-light: #E0E0E0;
  --radius: 12px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-1);
}

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

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

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

body {
  padding-top: 80px;
}

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-1);
}

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

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

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

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}

section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-hero {
  background-color: var(--bg-white);
  padding: 6rem 2rem;
  text-align: center;
}

.section-hero h1 {
  color: var(--accent-1);
}

.section-hero .intro-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}

.section-hero img {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  border-radius: var(--radius);
  max-height: 400px;
  object-fit: cover;
}

.section-content {
  padding: 4rem 2rem;
}

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

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

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

.section-two-column img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.section-text {
  padding: 0 1rem;
}

.section-text h2 {
  margin-bottom: 1.5rem;
}

.section-text ul {
  list-style: none;
  margin: 1.5rem 0;
}

.section-text li {
  padding: 0.8rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.8;
}

.section-text li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

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

.card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(30, 111, 122, 0.1);
  border-color: var(--primary-color);
}

.card h3 {
  color: var(--accent-1);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-white);
}

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

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

table tr:hover {
  background-color: rgba(168, 216, 185, 0.1);
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--accent-1);
  color: var(--bg-white);
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.disclaimer {
  background-color: rgba(168, 216, 185, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--radius);
}

.disclaimer h4 {
  color: var(--accent-1);
  margin-bottom: 0.5rem;
}

.disclaimer p {
  font-size: 0.95rem;
  color: var(--text-light);
}

footer {
  background-color: var(--accent-1);
  color: var(--bg-white);
  padding: 3rem 2rem;
  margin-top: 5rem;
}

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

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

.footer-section p, .footer-section a, .footer-section li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

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

.footer-section li {
  padding: 0.3rem 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookie-text a {
  color: var(--accent-1);
  font-weight: 500;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.cookie-btn-decline {
  background-color: var(--border-light);
  color: var(--text-dark);
}

.cookie-btn-decline:hover {
  background-color: var(--text-light);
  color: var(--bg-white);
}

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

.page-title h1 {
  color: var(--accent-1);
  margin-bottom: 0.5rem;
}

.page-content {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.8;
  padding-left: 1.5rem;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 1rem;
  }
  
  .section-hero {
    padding: 3rem 1rem;
  }
  
  .section-two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  footer {
    padding: 2rem 1rem;
  }
  
  .footer-container {
    gap: 1.5rem;
  }
}
