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

:root {
  --primary: #5C6BC0;
  --accent-gold: #FFCA28;
  --accent-red: #EF5350;
  --accent-teal: #26A69A;
  --dark-text: #1a1a1a;
  --light-text: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border: #e0e0e0;
}

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

html, body {
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
}

body {
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

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

p {
  margin-bottom: 1rem;
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.6;
}

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

a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 0.5rem 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}

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

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

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

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

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

.hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(92, 107, 192, 0.7) 0%, rgba(92, 107, 192, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section {
  padding: 5rem 2rem;
}

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

.section:nth-child(even) {
  background-color: var(--bg-light);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column img, .card-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--light-text);
}

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

.btn:hover {
  background-color: #ffd54f;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 202, 40, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

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

table th, table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

table tbody tr:hover {
  background-color: var(--bg-light);
}

.myth-fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.myth, .fact {
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid;
}

.myth {
  background-color: rgba(239, 83, 80, 0.1);
  border-left-color: var(--accent-red);
}

.fact {
  background-color: rgba(38, 166, 154, 0.1);
  border-left-color: var(--accent-teal);
}

.myth h4, .fact h4 {
  margin-bottom: 0.75rem;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.month-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border-top: 4px solid var(--primary);
}

.month-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.month-products {
  list-style: none;
}

.month-products li {
  padding: 0.4rem 0;
  color: var(--light-text);
  font-size: 0.9rem;
}

.faq-item {
  background-color: var(--white);
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: var(--light-text);
}

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

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  margin-top: 5rem;
}

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

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

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

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

.footer-section a {
  color: var(--white);
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--accent-gold);
}

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

.disclaimer-block {
  background-color: rgba(239, 83, 80, 0.1);
  border-left: 4px solid var(--accent-red);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-block strong {
  color: var(--accent-red);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 2px solid var(--primary);
  padding: 1.5rem 2rem;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 10000;
  display: none;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

.cookie-text a {
  color: var(--primary);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  min-width: fit-content;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-accept {
  background-color: var(--accent-gold);
  color: var(--dark-text);
}

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

.cookie-reject {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

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

@media (max-width: 1024px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .myth-fact {
    grid-template-columns: 1fr;
  }

  .calendar {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 768px) {
  nav {
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

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

  .section {
    padding: 3rem 1rem;
  }

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

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

  table {
    font-size: 0.85rem;
  }

  table th, table td {
    padding: 0.75rem;
  }

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

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

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  .section {
    padding: 2rem 0.75rem;
  }

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