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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  background-color: #fafbf9;
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1B5E20;
}

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

p {
  margin-bottom: 1rem;
  color: #555;
}

a {
  color: #1B5E20;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0d3810;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  color: #1B5E20;
  cursor: pointer;
  font-size: 1.3rem;
}

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

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

.nav-links a {
  font-size: 0.95rem;
  color: #666;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 80px;
}

section {
  padding: 4rem 2rem;
}

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

#hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}

#hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(27, 94, 32, 0.4);
  z-index: -1;
}

#hero .hero-content {
  position: relative;
  z-index: 1;
}

#hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1rem;
}

#hero p {
  color: #fff;
  font-size: 1.2rem;
  max-width: 600px;
}

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

.section-with-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-text {
  padding: 1rem 0;
}

.compounds-list {
  list-style: none;
  padding: 1.5rem 0;
}

.compounds-list li {
  padding: 0.8rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: #555;
}

.compounds-list li:before {
  content: '◦';
  position: absolute;
  left: 0;
  color: #1B5E20;
  font-weight: bold;
  font-size: 1.2rem;
}

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

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

.product-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

.product-card h3 {
  padding: 1.5rem;
  font-size: 1.1rem;
  margin-bottom: 0;
}

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

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  background-color: #f5f5f5;
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #333;
  transition: background-color 0.3s ease;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #1B5E20;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 1.5rem;
  background-color: #fff;
  color: #666;
  display: none;
}

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

.context-block {
  background-color: #f0f6f1;
  border-left: 4px solid #1B5E20;
  padding: 2rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.context-block h3 {
  color: #1B5E20;
  margin-top: 0;
}

.context-block p {
  color: #555;
  margin-bottom: 0.8rem;
}

.final-invitation {
  text-align: center;
  padding: 2rem;
  background-color: #fafbf9;
  border-radius: 6px;
}

.final-invitation h2 {
  margin-bottom: 1rem;
}

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

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

.contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  margin-top: 0;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1B5E20;
}

.contact-form button {
  background-color: #1B5E20;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.contact-form button:hover {
  background-color: #0d3810;
}

.contact-info {
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 6px;
}

.contact-info h3 {
  margin-top: 0;
  color: #1B5E20;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail h4 {
  color: #333;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.contact-detail p {
  color: #666;
  margin-bottom: 0;
}

footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

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

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: #e0e0e0;
  cursor: pointer;
}

.footer-section a:hover {
  color: #1B5E20;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #999;
}

.medical-disclaimer {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 600;
}

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

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

.modal-content {
  background-color: #fafbf9;
  padding: 2rem;
  border-radius: 6px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #1B5E20;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #333;
}

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

.success-message.show {
  display: block;
  animation: slideIn 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 1.5rem 2rem;
  z-index: 999;
  border-top: 2px solid #1B5E20;
  display: none;
}

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

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

.cookie-banner p {
  margin-bottom: 0;
  color: #e0e0e0;
  font-size: 0.95rem;
}

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

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #1B5E20;
  color: #fff;
}

.cookie-accept:hover {
  background-color: #0d3810;
}

.cookie-reject {
  background-color: transparent;
  color: #e0e0e0;
  border: 1px solid #e0e0e0;
}

.cookie-reject:hover {
  border-color: #1B5E20;
  color: #1B5E20;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-content {
    padding: 0.8rem 1rem;
  }

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

  #hero {
    min-height: 350px;
  }

  #hero h1 {
    font-size: 1.8rem;
  }

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

  .section-with-image {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

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

  .cookie-banner-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    justify-content: flex-end;
    width: 100%;
  }

  section {
    padding: 2rem 1rem;
  }

  main {
    margin-top: 70px;
  }
}

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

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

  #hero h1 {
    font-size: 1.3rem;
  }

  section {
    padding: 1.5rem 1rem;
  }
}
