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

:root {
  --primary-teal: #008080;
  --light-grey: #F0F0F0;
  --accent-gold: #FFD700;
  --accent-blue: #1E90FF;
  --dark-grey: #333333;
  --text-grey: #555555;
}

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

html, body {
  font-family: 'Lato', sans-serif;
  color: var(--text-grey);
  background-color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--dark-grey);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark-grey);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 2px solid var(--light-grey);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo a {
  color: var(--primary-teal);
}

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

nav a {
  color: var(--text-grey);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

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

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-gold);
}

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

main {
  margin-top: 80px;
}

section {
  padding: 6rem 0;
}

.hero-section {
  background-image: url('images/hero-main.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  margin-top: 0;
  padding: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 128, 128, 0.3);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 3.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
}

.section-alt {
  background-color: var(--light-grey);
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

.section-text {
  padding: 2rem;
}

.section-text h2 {
  margin-top: 0;
}

.section-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

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

.card {
  background-color: #ffffff;
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.card-body {
  padding: 2rem;
}

.card-body h3 {
  color: var(--primary-teal);
  margin-top: 0;
  font-size: 1.2rem;
}

.card-body p {
  color: var(--text-grey);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.myths-list {
  list-style: none;
  padding: 2rem 0;
}

.myths-list li {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: var(--light-grey);
  border-left: 4px solid var(--accent-gold);
  border-radius: 4px;
}

.myths-list strong {
  color: var(--primary-teal);
  font-family: 'Poppins', sans-serif;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-teal);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--dark-grey);
}

.btn-gold:hover {
  background-color: #ffed4e;
}

.disclaimer-block {
  background-color: #fff8e7;
  border: 2px solid var(--accent-gold);
  border-radius: 8px;
  padding: 2rem;
  margin: 3rem 0;
  color: var(--dark-grey);
}

.disclaimer-block h3 {
  color: var(--primary-teal);
  margin-top: 0;
}

footer {
  background-color: var(--dark-grey);
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: var(--accent-gold);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #e0e0e0;
}

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

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

.footer-links {
  list-style: none;
}

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

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #b0b0b0;
}

.faq-item {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--light-grey);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: #e8e8e8;
}

.faq-item h3 {
  color: var(--primary-teal);
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item .toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-top: 0;
  color: var(--text-grey);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

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

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

.cookie-message {
  flex: 1;
}

.cookie-message p {
  margin: 0;
  color: white;
  font-size: 0.95rem;
}

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

.cookie-banner button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

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

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

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

.cookie-learn {
  background-color: var(--accent-gold);
  color: var(--dark-grey);
}

.cookie-learn:hover {
  background-color: #ffed4e;
}

@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-content.reverse {
    direction: ltr;
  }

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

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

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

  .cookie-buttons {
    justify-content: center;
  }

  section {
    padding: 3rem 0;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.8rem;
  }

  .container {
    padding: 0 1rem;
  }

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