:root {
  --primary-bg: #E8F4F2;
  --primary-accent: #4A8C7D;
  --secondary-accent: #A3D9D2;
  --highlight-accent: #F2C94C;
  --text-dark: #2C3E50;
  --text-light: #FFFFFF;
  --border-light: #D4E8E5;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.6px;
}

h2 {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 1.2rem;
}

p {
  font-size: 16px;
  line-height: 1.68;
  margin-bottom: 1.2rem;
}

em, .italic {
  font-style: italic;
  color: var(--primary-accent);
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  p {
    font-size: 15px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.2rem 0;
}

header.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 2px 8px var(--shadow-light);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

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

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-decoration: none;
}

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

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

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

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

  .header-content {
    padding: 0 20px;
  }

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

section {
  padding: 140px 0;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: var(--text-light);
  text-align: center;
  margin-top: 60px;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero p {
  color: var(--text-light);
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 24px var(--shadow-medium);
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

.accent-text {
  color: var(--primary-accent);
  font-style: italic;
  font-size: 1.1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-accent);
  background-color: rgba(74, 140, 125, 0.05);
}

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

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

.icon-item svg {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  color: var(--primary-accent);
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
  .icon-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

.product-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow-light);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px var(--shadow-medium);
  background-color: rgba(232, 244, 242, 0.5);
}

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

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

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

.product-card p {
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .product-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.table-section {
  margin: 3rem 0;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

thead {
  background-color: var(--primary-accent);
  color: var(--text-light);
}

th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
  line-height: 1.6;
}

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

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

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

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

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

.faq-question:hover {
  background-color: rgba(74, 140, 125, 0.1);
}

.faq-question.active {
  background-color: rgba(74, 140, 125, 0.15);
}

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

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

.faq-answer {
  padding: 1.5rem;
  background-color: #FFFFFF;
  display: none;
  color: var(--text-dark);
  line-height: 1.8;
}

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

footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
  margin-top: 140px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--highlight-accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--secondary-accent);
  font-size: 14px;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 40px 0;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 20px;
  }

  footer {
    margin-top: 80px;
  }

  .footer-bottom {
    padding: 1.5rem 20px 0;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

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

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--primary-accent);
  font-size: 2rem;
}

.modal-content p {
  font-size: 15px;
  line-height: 1.7;
}

.modal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

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

.modal-content li {
  margin-bottom: 0.5rem;
  font-size: 15px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (max-width: 768px) {
  .modal-content {
    padding: 1.5rem;
    width: 95%;
    max-height: 90vh;
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
  }
}

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

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

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

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

.form-disclaimer {
  background-color: rgba(232, 244, 242, 0.8);
  border-left: 4px solid var(--primary-accent);
  padding: 1rem;
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.form-controls {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--primary-accent);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #3d7266;
  box-shadow: 0 4px 12px rgba(74, 140, 125, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-accent);
  border: 2px solid var(--primary-accent);
}

.btn-secondary:hover {
  background-color: rgba(74, 140, 125, 0.1);
}

.btn-text {
  background: none;
  border: none;
  color: var(--primary-accent);
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
  font-weight: normal;
  font-size: 15px;
}

.btn-text:hover {
  color: var(--secondary-accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 1.5rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 -2px 12px var(--shadow-medium);
  animation: slideUp 0.4s ease;
}

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

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-controls .btn {
  white-space: nowrap;
  padding: 0.7rem 1.4rem;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cookie-controls .btn {
    width: 100%;
    text-align: center;
  }
}

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

.section-bg-white {
  background-color: #FFFFFF;
}

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

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2rem; }
