@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&family=Josefin+Sans:wght@400;500;600;700&display=swap');

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

html, body {
  height: 100%;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

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

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: #009688;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.85;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 150, 136, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #009688;
  cursor: pointer;
}

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

.logo:hover {
  opacity: 0.9;
}

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

.nav-links a {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #009688;
  opacity: 1;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  padding-bottom: 2rem;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  margin-bottom: 4rem;
  padding: 3rem 0;
}

footer {
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  padding: 3rem 0 1rem;
  font-size: 0.9rem;
  color: #666;
}

.footer-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #009688;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-section ul li a {
  color: #666;
  font-size: 0.85rem;
}

.footer-section ul li a:hover {
  color: #009688;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
}

.disclaimer {
  color: #009688;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero {
  background: linear-gradient(135deg, rgba(0, 150, 136, 0.05) 0%, rgba(0, 150, 136, 0.02) 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  color: #009688;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 150, 136, 0.15);
}

.intro-section {
  background-color: #fafafa;
  padding: 3rem 0;
}

.intro-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
  text-align: center;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.content-row.reverse {
  direction: rtl;
}

.content-row.reverse > * {
  direction: ltr;
}

.content-text h2 {
  color: #009688;
  margin-bottom: 1.5rem;
}

.content-text p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-image {
  width: 100%;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 150, 136, 0.1);
  transition: transform 0.3s ease;
}

.content-image img:hover {
  transform: scale(1.04);
}

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

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 16px rgba(0, 150, 136, 0.15);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  color: #009688;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.product-info p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-info a {
  display: inline-block;
  color: #009688;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.product-info a:hover {
  opacity: 0.85;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.card h3 {
  color: #009688;
  margin-bottom: 1rem;
}

.card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.card a {
  color: #009688;
  font-weight: 500;
}

.card a:hover {
  opacity: 0.85;
}

.faq-section {
  background-color: #fafafa;
  padding: 3rem 0;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background-color 0.3s ease;
}

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

.faq-question h4 {
  margin: 0;
  color: #009688;
  font-weight: 600;
}

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

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

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

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.cta-section {
  text-align: center;
  padding: 3rem 0;
}

.cta-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #009688;
  color: #fff;
  border-radius: 12px;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(0, 150, 136, 0.3);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #009688;
  box-shadow: 0 0 0 3px rgba(0, 150, 136, 0.1);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fafafa;
  padding: 2rem;
  border-radius: 12px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #009688;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

table th {
  background-color: #009688;
  color: #fff;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ddd;
}

table tr:hover {
  background-color: #fafafa;
}

.disclaimer-box {
  background-color: #f0f8f7;
  border-left: 4px solid #009688;
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-box h4 {
  color: #009688;
  margin-top: 0;
}

.disclaimer-box p {
  color: #555;
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cookie-consent.active {
  max-height: 300px;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  min-width: 200px;
}

.cookie-text p {
  margin: 0;
}

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

.cookie-actions a {
  color: #009688;
  font-weight: 500;
  font-size: 0.9rem;
}

.cookie-actions a:hover {
  opacity: 0.85;
}

.btn-accept-cookies {
  padding: 0.5rem 1.25rem;
  background-color: #009688;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease;
}

.btn-accept-cookies:hover {
  transform: scale(1.04);
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  .content-row,
  .content-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .content-row.reverse > * {
    direction: ltr;
  }

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

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

  .cookie-actions {
    width: 100%;
  }

  .footer-section ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  main {
    margin-top: 70px;
  }

  header {
    padding: 0.75rem 0;
  }
}

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

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

  .logo {
    font-size: 1.1rem;
  }

  .products-grid {
    gap: 1rem;
  }

  .product-card {
    margin-bottom: 1rem;
  }

  .content-text,
  .content-image {
    width: 100%;
  }
}
