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

:root {
  --accent-color: #1976D2;
  --accent-dark: #1565C0;
  --accent-light: #42A5F5;
  --text-dark: #2C3E50;
  --text-medium: #546E7A;
  --text-light: #78909C;
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --border-light: #E0E0E0;
}

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

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

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

h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

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

.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--accent-dark);
  text-decoration: none;
}

.logo-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.logo:hover .logo-circle {
  transform: rotate(180deg);
}

.logo-circle::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-white);
}

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

.nav-menu li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--accent-color);
  background: rgba(25, 118, 210, 0.08);
  text-decoration: none;
}

.nav-menu li a.active {
  color: var(--accent-color);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

main {
  margin-top: 80px;
}

.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F8F9FA 0%, #E3F2FD 100%);
}

.hero h1 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.hero p.lead {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.section {
  padding: 4rem 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.card {
  border: none;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  background: var(--bg-white);
}

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

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-medium);
}

.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin: 1.5rem 0;
}

.content-image.float-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  max-width: 45%;
}

.content-image.float-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
  max-width: 45%;
}

.btn-primary {
  background: var(--accent-color);
  border: none;
  border-radius: 24px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--bg-white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 24px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--accent-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(25, 118, 210, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--accent-color);
}

.feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 24px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  background: var(--bg-light);
  transform: translateY(-4px);
}

.myth-card {
  background: var(--bg-white);
  border-left: 4px solid var(--accent-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.myth-card h4 {
  color: #E53935;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.myth-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h4 {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0;
}

.disclaimer-box {
  background: #FFF3E0;
  border-left: 4px solid #FF9800;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: #F57C00;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.disclaimer-box ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.disclaimer-box li {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  color: var(--bg-white);
  padding: 4rem 0;
  border-radius: 24px;
  margin: 2rem 0;
}

.cta-section h2,
.cta-section p {
  color: var(--bg-white);
}

.contact-form {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-control {
  border-radius: 12px;
  border: 2px solid var(--border-light);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.15);
}

.contact-info {
  background: var(--bg-light);
  border-radius: 24px;
  padding: 2rem;
}

.contact-info h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

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

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-item-content h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.contact-item-content p {
  margin-bottom: 0;
  color: var(--text-medium);
}

.footer {
  background: #263238;
  color: #B0BEC5;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

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

.footer ul li a {
  color: #B0BEC5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: var(--bg-white);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #37474F;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #90A4AE;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 9999;
  border-top: 3px solid var(--accent-color);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin-bottom: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

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

.policy-content h2 {
  color: var(--accent-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.policy-content li {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.alert-info {
  background: #E3F2FD;
  border-left: 4px solid var(--accent-color);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.alert-info p {
  margin-bottom: 0;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    background: var(--bg-white);
    width: 100%;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin-bottom: 1rem;
  }

  .nav-menu li a {
    display: block;
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero p.lead {
    font-size: 1.1rem;
  }

  .content-image.float-left,
  .content-image.float-right {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-actions button {
    width: 100%;
  }

  .section {
    padding: 3rem 0;
  }
}
