:root {
  --color-primary: #F5F5DC;
  --color-accent1: #9ACD32;
  --color-accent2: #4682B4;
  --color-accent3: #E9967A;
  --color-text: #333;
  --color-light: #fafaf8;
  --color-border: #e0e0d0;
}

* {
  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-light);
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}

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

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

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

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

nav a {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent1);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

main {
  padding-top: 80px;
  margin: 0;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(70,130,180,0.5), rgba(154,205,50,0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

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

.hero p {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

section {
  padding: 5rem 2rem;
}

.section-content {
  max-width: 1400px;
  margin: 0 auto;
}

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

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

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

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

.two-column-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-column-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.two-column-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.two-column-image:hover img {
  transform: scale(1.02);
}

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

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

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

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

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

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: var(--color-accent2);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--color-accent1);
  box-shadow: 0 4px 12px rgba(154,205,50,0.3);
  transform: translateY(-2px);
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background: white;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  background-color: var(--color-primary);
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f0ebe0;
}

.faq-answer {
  display: none;
  padding: 1.5rem;
  background: white;
  color: var(--color-text);
  line-height: 1.7;
}

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

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

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

.form-section {
  background: linear-gradient(135deg, var(--color-accent2), var(--color-accent1));
  padding: 5rem 2rem;
  color: white;
  border-radius: 16px;
  margin-top: 3rem;
}

.form-section h2 {
  color: white;
}

.form-wrapper {
  max-width: 600px;
  margin: 2rem auto 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background-color: rgba(255,255,255,0.95);
  color: var(--color-text);
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.form-disclaimer {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background-color: white;
  color: var(--color-accent2);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

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

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

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--color-accent1);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

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

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  overflow-y: auto;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 3rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 1rem;
}

.modal-header h2 {
  margin: 0;
  color: var(--color-accent2);
}

.close-modal {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--color-accent1);
}

.disclaimer-box {
  background-color: var(--color-primary);
  border-left: 4px solid var(--color-accent1);
  padding: 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--color-border);
  padding: 1.5rem 2rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

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

.cookie-text {
  flex: 1;
  margin-right: 2rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

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

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

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

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

.cookie-btn-reject {
  background-color: var(--color-border);
  color: var(--color-text);
}

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

.cookie-btn-more {
  background-color: transparent;
  color: var(--color-accent2);
  border: 2px solid var(--color-accent2);
}

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

.success-message {
  display: none;
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--color-accent1);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 2001;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.success-message.show {
  display: block;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-content {
    padding: 1rem;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero {
    height: 60vh;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

  section {
    padding: 3rem 1rem;
  }

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

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

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

  .modal-content {
    margin: 10% auto;
    padding: 1.5rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-text {
    margin-right: 0;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .success-message {
    right: 10px;
    left: 10px;
    top: 80px;
  }

  nav {
    display: none;
  }
}

.list-styled {
  list-style: none;
  padding-left: 0;
}

.list-styled li {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.list-styled li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--color-accent1);
  font-weight: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

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

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

table tr:last-child td {
  border-bottom: none;
}

table tr:nth-child(even) {
  background-color: var(--color-light);
}

.final-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--color-accent2), var(--color-accent1));
  color: white;
  border-radius: 12px;
  margin-top: 3rem;
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.compliance-statement {
  background-color: var(--color-primary);
  border-left: 4px solid var(--color-accent1);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-text);
}
