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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: #2B2B2B;
  background-color: #FFFFFF;
  line-height: 1.85;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2B2B2B;
}

h2 {
  font-size: 44px;
  color: #0055A4;
  margin-bottom: 30px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  color: #2B2B2B;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  line-height: 1.85;
}

strong {
  color: #0055A4;
  font-weight: 600;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

header.scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0055A4;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: #2B2B2B;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0055A4;
}

.nav-links a.active {
  color: #0055A4;
  border-bottom: 2px solid #E6B800;
  padding-bottom: 5px;
}

main {
  margin-top: 80px;
}

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

.container-full {
  width: 100%;
  margin: 0;
  padding: 0;
}

section {
  padding: 150px 0;
}

section.hero {
  padding: 0;
  margin-top: 80px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

section.light {
  background-color: #FFFFFF;
}

section.dark {
  background-color: #F5F5F5;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 15px;
}

.section-title p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.product-card {
  background: #FFFFFF;
  border: 2px solid #F5F5F5;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  border-color: #0055A4;
  transform: translateY(-8px);
}

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

.product-content {
  padding: 30px;
}

.product-content h3 {
  margin-bottom: 15px;
}

.product-content p {
  color: #666;
  font-size: 16px;
}

.nutrients-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.nutrients-table th {
  background: #0055A4;
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

.nutrients-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #E6E6E6;
}

.nutrients-table tr:hover {
  background: #F5F5F5;
}

.image-with-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.image-with-text.reverse {
  direction: rtl;
}

.image-with-text.reverse > * {
  direction: ltr;
}

.image-with-text img {
  width: 100%;
  height: auto;
  display: block;
}

.image-with-text h3 {
  color: #0055A4;
  margin-bottom: 20px;
}

.info-box {
  background: #F5F5F5;
  border-left: 4px solid #E6B800;
  padding: 30px;
  margin: 40px 0;
}

.info-box h3 {
  margin-top: 0;
  color: #0055A4;
}

.disclaimer-box {
  background: #F5F5F5;
  border: 2px solid #E6B800;
  padding: 30px;
  margin: 40px 0;
  border-radius: 4px;
}

.disclaimer-box p {
  color: #333;
  font-size: 16px;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: #0055A4;
  text-decoration: none;
  border: 2px solid #E6B800;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
}

.cta-button:hover {
  transform: scale(1.05);
  background: rgba(230, 184, 0, 0.1);
}

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

footer {
  background: #2B2B2B;
  color: white;
  padding: 60px 0 20px;
  margin-top: 100px;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #444;
}

footer h3 {
  color: #E6B800;
  margin-bottom: 20px;
  font-size: 16px;
}

footer p {
  color: #CCC;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

footer a {
  color: #E6B800;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0055A4;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2B2B2B;
  color: white;
  padding: 20px 40px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #0055A4;
  color: white;
  border-radius: 4px;
}

.cookie-btn-accept:hover {
  background: #003d80;
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 4px;
}

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

.cookie-btn-policy {
  background: transparent;
  color: #E6B800;
  border: 1px solid #E6B800;
  border-radius: 4px;
}

.cookie-btn-policy:hover {
  background: rgba(230, 184, 0, 0.1);
}

form {
  max-width: 600px;
  margin: 40px auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2B2B2B;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #DDD;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0055A4;
  box-shadow: 0 0 0 3px rgba(0, 85, 164, 0.1);
}

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

.faq-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 30px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: #0055A4;
  cursor: pointer;
  user-select: none;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-answer {
  color: #666;
  line-height: 1.8;
  display: none;
}

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

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

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

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  section {
    padding: 80px 0;
  }

  .container {
    padding: 0 20px;
  }

  .image-with-text {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .image-with-text.reverse {
    direction: ltr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
  }

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

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

  footer .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  h2 {
    font-size: 24px;
  }

  body {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 12px;
  }
}
