:root {
  --primary-light: #B8E0FF;
  --primary-dark: #0D5B7C;
  --accent-dark-green: #2D5F4F;
  --accent-cream: #F5F1E8;
  --accent-gold: #D4A574;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --border-color: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 1px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-dark-green);
  border-bottom-color: var(--accent-gold);
}

main {
  margin-top: 80px;
}

.hero {
  background: linear-gradient(rgba(13, 91, 124, 0.7), rgba(45, 95, 79, 0.7)), url('images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 1rem;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.8;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.8;
}

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

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

.two-column h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.two-column p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.two-column ul,
.two-column ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.two-column li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
  line-height: 1.8;
}

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

.full-width-bg {
  background-color: var(--accent-cream);
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 80px 1rem;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

table th {
  background-color: var(--primary-dark);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--accent-dark-green);
}

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

table tr:hover {
  background-color: rgba(184, 224, 255, 0.3);
}

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

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.product-card-content {
  padding: 1.5rem;
}

.product-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

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

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.faq-question:hover {
  background-color: rgba(184, 224, 255, 0.2);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  font-size: 1.5rem;
  color: var(--accent-dark-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: white;
}

.faq-answer.show {
  max-height: 500px;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark-green));
  color: white;
  text-align: center;
  padding: 60px 1rem;
  border-radius: 8px;
  margin: 4rem 0;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-gold);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-gold);
  cursor: pointer;
  font-size: 0.95rem;
}

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

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.contact-info strong {
  color: var(--text-dark);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-dark-green);
  box-shadow: 0 0 0 3px rgba(45, 95, 79, 0.1);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.6;
  background-color: var(--accent-cream);
  padding: 1rem;
  border-radius: 6px;
  border-left: 3px solid var(--accent-gold);
}

footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 1rem 1rem;
  text-align: center;
  margin-top: 4rem;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.footer-info {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
}

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

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

.modal-content h2 {
  color: var(--primary-dark);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.modal-content h3 {
  color: var(--accent-dark-green);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.modal-content p,
.modal-content li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.modal-content ul,
.modal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1500;
}

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

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

.cookie-text {
  flex: 1;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

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

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

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

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

.cookie-more:hover {
  background-color: var(--primary-dark);
  color: white;
}

.success-message {
  display: none;
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  border-left: 4px solid #28a745;
}

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

@media (max-width: 768px) {
  header {
    padding: 0.75rem 0;
  }

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

  .logo-text {
    font-size: 1.2rem;
  }

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

  main {
    margin-top: 100px;
  }

  .hero {
    padding: 60px 1rem;
    min-height: 400px;
  }

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

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

  .section {
    padding: 50px 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .two-column h2 {
    font-size: 1.5rem;
  }

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

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

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

  table {
    font-size: 0.85rem;
  }

  table th,
  table td {
    padding: 0.75rem;
  }
}

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

  .section-title {
    font-size: 1.5rem;
  }

  .two-column h2 {
    font-size: 1.2rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .footer-links {
    gap: 1rem;
  }
}
