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

:root {
  --navy: #0A2342;
  --coral: #FF6F61;
  --gold: #E8C39E;
  --mint: #98FB98;
  --light-bg: #F8F7F4;
  --white: #FFFFFF;
  --text-dark: #2C3E50;
  --text-light: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 17px;
  background-color: var(--white);
}

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

h1 {
  font-size: 54px;
  letter-spacing: 0.8px;
  margin-bottom: 30px;
  color: var(--navy);
  font-weight: 700;
}

h2 {
  font-size: 40px;
  color: var(--navy);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--coral);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 15px;
  margin-top: 20px;
}

p {
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.8;
}

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

a:hover {
  color: var(--navy);
}

button, .btn {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 111, 97, 0.3);
}

.btn-secondary {
  background-color: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--coral);
  transform: translateY(-2px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 35, 66, 0.95);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header.scrolled {
  background: rgba(10, 35, 66, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.logo {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--coral);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--coral);
}

body {
  padding-top: 70px;
}

main {
  min-height: calc(100vh - 250px);
}

section {
  padding: 160px 0;
}

section.full-width {
  padding: 0;
}

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

.hero {
  padding: 0;
  margin-top: -70px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(10, 35, 66, 0.4), rgba(255, 111, 97, 0.2)), url('images/hero-products.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 0.8s ease;
}

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

.hero-content {
  color: var(--white);
  max-width: 800px;
  padding: 0 40px;
}

.hero h1 {
  color: var(--white);
  font-size: 60px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: var(--white);
  font-size: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.info-section {
  background: var(--white);
}

.info-section.alt {
  background: var(--light-bg);
}

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

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

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  border-color: var(--coral);
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(255, 111, 97, 0.15);
}

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

.product-card-content {
  padding: 30px;
}

.product-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.product-card p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.nutrients-highlight {
  background: var(--light-bg);
  padding: 15px;
  border-left: 4px solid var(--coral);
  border-radius: 4px;
  margin-bottom: 15px;
}

.nutrients-highlight strong {
  color: var(--coral);
  font-weight: 700;
}

.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--white);
}

table thead {
  background: var(--navy);
  color: var(--white);
}

table th {
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--light-bg);
  font-size: 16px;
}

table tbody tr:hover {
  background: rgba(255, 111, 97, 0.05);
}

.disclaimer-box {
  background: rgba(232, 195, 158, 0.15);
  border-left: 4px solid var(--gold);
  padding: 25px;
  border-radius: 4px;
  margin: 40px 0;
  color: var(--text-dark);
}

.disclaimer-box h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 16px;
}

.disclaimer-box p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.content-block {
  margin: 40px 0;
  line-height: 1.8;
}

.content-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-box {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(10, 35, 66, 0.05), rgba(255, 111, 97, 0.05));
  border-radius: 8px;
  margin: 40px 0;
}

.cta-box h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 30px;
  margin-top: 80px;
}

footer h4 {
  color: var(--gold);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

footer a {
  color: var(--white);
  transition: color 0.3s ease;
  font-size: 14px;
}

footer a:hover {
  color: var(--coral);
}

.footer-section {
  margin-bottom: 30px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
  background: rgba(255, 111, 97, 0.1);
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
  font-size: 14px;
  border-left: 4px solid var(--coral);
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-bg);
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.1);
}

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

.form-disclaimer {
  background: rgba(10, 35, 66, 0.05);
  padding: 15px;
  border-left: 4px solid var(--coral);
  border-radius: 4px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.6;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--light-bg);
}

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

.faq-item h4 {
  color: var(--navy);
  margin-bottom: 15px;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item h4:hover {
  color: var(--coral);
}

.faq-item p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 25px 40px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 3px solid var(--coral);
  animation: slideUp 0.4s ease;
}

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

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

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

.cookie-content a {
  color: var(--coral);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--coral);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--gold);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-btn-reject:hover {
  background: var(--white);
  color: var(--navy);
}

.thank-you-message {
  text-align: center;
  padding: 80px 40px;
  min-height: 60vh;
}

.thank-you-message h1 {
  color: var(--navy);
  margin-bottom: 20px;
}

.thank-you-message p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.back-link {
  display: inline-block;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-link:hover {
  background: var(--coral);
}

.image-section {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 50px 0;
}

.image-section img {
  flex: 0 0 40%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.image-section-content {
  flex: 1;
}

@media (max-width: 768px) {
  .image-section {
    flex-direction: column;
  }

  .image-section img {
    flex: 0 0 100%;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  section {
    padding: 80px 0;
  }

  .nav-menu {
    gap: 20px;
    font-size: 12px;
  }

  .container-custom {
    padding: 0 20px;
  }

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

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

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

  .cookie-btn {
    width: 100%;
  }

  .hero {
    height: 60vh;
  }

  .hero h1 {
    font-size: 40px;
  }

  .image-section {
    gap: 25px;
  }
}
