:root {
  --primary: #4A90E2;
  --accent-light: #F0F0F0;
  --accent-green: #7ED321;
  --accent-yellow: #F8E71C;
  --dark: #1a1a1a;
  --light: #ffffff;
  --text: #333333;
  --border: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--light);
}

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

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

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

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--light);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

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

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

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

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero {
  margin-top: 80px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.85), rgba(126, 211, 33, 0.85)), 
              url('images/hero-bg.jpg') center/cover no-repeat;
  padding: 120px 2rem;
  text-align: center;
  color: var(--light);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  color: var(--light);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--light);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

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

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

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

.section-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-text {
  font-size: 1rem;
  line-height: 1.8;
}

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

.section-text p {
  margin-bottom: 1rem;
}

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

.card {
  background: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
  border-color: var(--primary);
}

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

.card-content {
  padding: 2rem;
}

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

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
  padding-left: 2rem;
}

.faq-item h3 {
  cursor: pointer;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item p {
  margin-top: 1rem;
  display: none;
  animation: slideDown 0.3s ease;
}

.faq-item p.show {
  display: block;
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary);
  color: var(--light);
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--light);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--accent-green);
}

.form-section {
  max-width: 600px;
  margin: 0 auto;
  background: var(--accent-light);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-disclaimer {
  background: rgba(74, 144, 226, 0.1);
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
}

.disclaimer-section {
  background: var(--accent-light);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid var(--accent-yellow);
}

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

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

.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 h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

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

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

.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.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

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

.close-btn {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--primary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--light);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

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

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

.cookie-message a {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}

.cookie-message a:hover {
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #3a7bc8;
}

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

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

.thank-you-modal {
  text-align: center;
}

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

.thank-you-modal p {
  font-size: 1rem;
  color: var(--text);
}

body.cookie-accepted {
  margin-bottom: 0;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .navbar {
    padding: 0 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero {
    margin-top: 70px;
    padding: 60px 1rem;
    min-height: auto;
  }

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

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

  .section {
    padding: 60px 1rem;
  }

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

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

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

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

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

  .cookie-buttons button {
    flex: 1;
    min-width: 100px;
  }
}

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

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .nav-links {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .hero {
    padding: 40px 1rem;
  }

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

  .section {
    padding: 40px 1rem;
  }

  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }
}
