:root {
  --color-primary: #5DADE2;
  --color-accent-beige: #E8D5C4;
  --color-accent-mint: #A8D8D8;
  --color-dark-gray: #3A3F47;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --spacing-unit: 1.5rem;
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: var(--color-dark-gray);
  background-color: var(--color-white);
  line-height: 1.6;
}

body {
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-unit);
  color: var(--color-dark-gray);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

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

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

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--spacing-unit);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
  border-radius: 50%;
  object-fit: cover;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--color-dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.section {
  padding: 5rem var(--spacing-unit);
  margin: 0 auto;
  max-width: 100%;
}

.container-full {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(93, 173, 226, 0.3), rgba(93, 173, 226, 0.3)), url('images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  position: relative;
  top: -80px;
  padding-top: 80px;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #4A8BB0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 173, 226, 0.3);
}

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

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

.section-start {
  background-color: var(--color-light-gray);
}

.diet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

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

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--color-dark-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.two-column {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.two-column-text {
  flex: 1;
}

.two-column-img {
  flex: 1;
  text-align: center;
}

.two-column-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.product-card {
  text-align: center;
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.product-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-title {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--color-dark-gray);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.faq-section {
  background-color: var(--color-light-gray);
}

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

.faq-item {
  margin-bottom: 2rem;
  background: var(--color-white);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  color: var(--color-dark-gray);
  line-height: 1.7;
  margin-top: 1rem;
}

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

.faq-toggle {
  color: var(--color-primary);
  font-weight: bold;
}

.disclaimer-box {
  background-color: #EBF5F7;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--color-dark-gray);
  line-height: 1.7;
}

.disclaimer-box strong {
  color: var(--color-primary);
}

.cta-section {
  text-align: center;
  padding: 4rem var(--spacing-unit);
  background: linear-gradient(135deg, var(--color-accent-mint), #EBF5F7);
  border-radius: 8px;
  margin: 3rem 0;
}

.cta-section h2 {
  color: var(--color-dark-gray);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--color-dark-gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-section {
  background-color: var(--color-light-gray);
}

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

.contact-info {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-label {
  font-weight: 600;
  color: var(--color-primary);
  min-width: 100px;
}

.contact-value {
  color: var(--color-dark-gray);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-dark-gray);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #DDD;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(93, 173, 226, 0.1);
}

.form-disclaimer {
  background-color: #EBF5F7;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--color-dark-gray);
  margin-bottom: 1rem;
  border-left: 4px solid var(--color-primary);
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #4A8BB0;
  transform: translateY(-2px);
}

footer {
  background-color: var(--color-dark-gray);
  color: var(--color-white);
  padding: 3rem var(--spacing-unit);
  margin-top: 4rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--color-accent-mint);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  margin-top: 1rem;
}

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

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent-mint);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-copyright {
  margin-bottom: 1rem;
}

.footer-legal {
  margin-bottom: 1rem;
}

.footer-disclaimer {
  background-color: rgba(168, 216, 216, 0.1);
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #A8D8D8;
}

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

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

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

.modal-content {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark-gray);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-dark-gray);
  transition: color 0.3s ease;
}

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

.modal-body {
  color: var(--color-dark-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.modal-body h3 {
  color: var(--color-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark-gray);
  color: var(--color-white);
  padding: 1.5rem var(--spacing-unit);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  animation: slideUp 0.3s ease;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  background-color: var(--color-white);
  color: var(--color-dark-gray);
}

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

.cookie-btn.accept:hover {
  background-color: #4A8BB0;
  border-color: #4A8BB0;
}

.thank-you-modal {
  text-align: center;
}

.thank-you-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.thank-you-text {
  font-size: 1.1rem;
  color: var(--color-dark-gray);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    height: 60vh;
    top: -70px;
    padding-top: 70px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

  .two-column {
    flex-direction: column;
    gap: 2rem;
  }

  .container-full {
    flex-direction: column;
    gap: 2rem;
  }

  .section {
    padding: 3rem 1rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

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

  .modal-content {
    margin: 1rem;
    max-height: 90vh;
  }
}
