:root {
  --color-bg: #FAFAFA;
  --color-primary: #F57C00;
  --color-primary-dark: #EF6C00;
  --color-accent: #FFB74D;
  --color-light-accent: #FFE0B2;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #E0E0E0;
  --color-white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 8px;
  --spacing-lg: 120px;
  --spacing-md: 60px;
  --spacing-sm: 30px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  font-size: 18px;
}

h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
}

p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

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

a:hover {
  color: var(--color-primary-dark);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--color-bg);
}

.header-content {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

nav a:hover {
  color: var(--color-primary);
  background-color: var(--color-light-accent);
}

/* Main Content */
body {
  padding-top: 80px;
}

main {
  width: 100%;
}

section {
  max-width: 1500px;
  margin: 0 auto;
  padding: var(--spacing-lg) 40px;
  width: 100%;
}

section.full-width {
  max-width: 100%;
  margin: 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFE0B2 0%, #FAFAFA 100%);
  padding: 150px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: -80px;
  padding-top: 230px;
}

.hero-content h1 {
  font-size: 62px;
  margin-bottom: 30px;
  color: var(--color-text);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--color-text-light);
}

.hero-image {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.disclaimer-banner {
  background: linear-gradient(135deg, #F57C00 0%, #EF6C00 100%);
  color: white;
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
  animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Standard Sections */
.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Two-Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-column.reversed {
  direction: rtl;
}

.two-column.reversed > * {
  direction: ltr;
}

.two-column-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  animation: scaleUp 0.8s ease-out;
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  border-top: 4px solid var(--color-primary);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(245, 124, 0, 0.2);
  background: linear-gradient(135deg, rgba(255, 224, 178, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

.card h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
}

.card p {
  color: var(--color-text-light);
  font-size: 17px;
  line-height: 1.7;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(255, 224, 178, 0.2);
}

.comparison-table tr:hover {
  background-color: rgba(245, 124, 0, 0.1);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: white;
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--color-text);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(255, 224, 178, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  border-left-color: var(--color-primary);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), padding 0.4s ease;
  padding: 0 25px;
  background: linear-gradient(135deg, rgba(255, 224, 178, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 25px;
}

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

/* Myth Section */
.myth-item {
  background: white;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  border-left: 4px solid #FF6B6B;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.myth-item h4 {
  color: #FF6B6B;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.myth-item .myth-label {
  display: inline-block;
  background: #FFE0B2;
  color: var(--color-text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.myth-item.debunked {
  border-left-color: var(--color-primary);
}

.myth-item.debunked .myth-label {
  background: #C8E6C9;
  color: #2E7D32;
}

/* Context Notice */
.context-notice {
  background: linear-gradient(135deg, #FFE0B2 0%, rgba(255, 224, 178, 0.5) 100%);
  border-left: 4px solid var(--color-primary);
  padding: 40px;
  border-radius: var(--radius);
  margin: 40px 0;
  max-width: 900px;
}

.context-notice h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
}

.context-notice ul {
  list-style: none;
  padding-left: 0;
}

.context-notice li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.8;
}

.context-notice li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  color: var(--color-primary);
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-item label {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item a,
.contact-item p {
  color: var(--color-text-light);
  font-size: 16px;
}

.contact-item a {
  color: var(--color-primary);
}

.contact-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  color: var(--color-primary);
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  font-size: 16px;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.1);
}

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

.form-disclaimer {
  background: #F5F5F5;
  padding: 15px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 25px;
  border-left: 3px solid var(--color-primary);
  line-height: 1.6;
}

.button {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
  width: 100%;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 124, 0, 0.4);
}

.button:active {
  transform: translateY(0);
}

.button.secondary {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--color-light-accent);
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.2);
}

/* Footer */
footer {
  background: #333333;
  color: white;
  padding: 60px 40px 30px;
  margin-top: 100px;
}

.footer-content {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--color-accent);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

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

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #CCCCCC;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-divider p {
  font-size: 13px;
  color: #999999;
  margin: 0;
}

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

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

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

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

.modal-close {
  color: var(--color-text-light);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

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

.modal-content h2 {
  margin-top: 0;
  color: var(--color-primary);
  font-size: 32px;
}

.modal-content h3 {
  color: var(--color-text);
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.modal-content ul {
  padding-left: 20px;
}

.modal-content li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
  color: white;
  padding: 25px 40px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
  animation: slideUpBanner 0.5s ease;
}

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

.cookie-banner.show {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.cookie-content {
  font-size: 15px;
  line-height: 1.6;
}

.cookie-content p {
  margin: 0;
  color: #DDD;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-btn-accept:hover {
  background: var(--color-primary-dark);
}

.cookie-btn-decline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

.cookie-btn-more {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  text-decoration: underline;
}

.cookie-btn-more:hover {
  background: var(--color-accent);
  color: white;
}

/* Thank You Modal */
.thank-you-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 60px;
  border-radius: var(--radius);
  text-align: center;
  z-index: 2001;
  display: none;
  animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.thank-you-modal h2 {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-size: 36px;
}

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

.thank-you-modal.show {
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --spacing-lg: 80px;
    --spacing-md: 50px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  section {
    padding: var(--spacing-lg) 30px;
  }

  .header-content {
    padding: 15px 30px;
  }

  nav {
    gap: 20px;
  }

  nav a {
    font-size: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 30px 150px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-image {
    height: 350px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .two-column-image {
    height: 300px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .modal-content {
    margin: 20% auto;
    padding: 30px;
    max-width: 90%;
  }

  .cookie-banner.show {
    grid-template-columns: 1fr;
  }

  .cookie-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 60px;
    --spacing-md: 40px;
    --spacing-sm: 20px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  section {
    padding: var(--spacing-lg) 20px;
  }

  .header-content {
    padding: 12px 20px;
    flex-direction: column;
    gap: 15px;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  nav a {
    font-size: 13px;
    padding: 6px 10px;
  }

  .hero {
    padding: 80px 20px 100px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-image {
    height: 250px;
  }

  .disclaimer-banner {
    font-size: 14px;
    padding: 15px;
  }

  .two-column-image {
    height: 250px;
  }

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

  .card {
    padding: 30px;
  }

  .contact-image {
    height: 300px;
  }

  .contact-form,
  .contact-info {
    padding: 30px;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 20px;
  }

  .modal-content {
    margin: 30% auto;
    padding: 20px;
  }

  .thank-you-modal {
    padding: 40px 30px;
  }

  .thank-you-modal h2 {
    font-size: 28px;
  }

  .cookie-banner.show {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  :root {
    --spacing-lg: 40px;
    --spacing-md: 30px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  body {
    font-size: 15px;
  }

  p {
    font-size: 15px;
  }

  section {
    padding: var(--spacing-lg) 15px;
  }

  .header-content {
    gap: 10px;
  }

  .logo {
    font-size: 18px;
  }

  .logo img {
    width: 28px;
    height: 28px;
  }

  nav {
    gap: 8px;
  }

  nav a {
    font-size: 12px;
    padding: 4px 8px;
  }

  .hero {
    padding: 60px 15px 80px;
  }

  .hero-image {
    height: 200px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 16px;
  }

  .button {
    padding: 14px 20px;
    font-size: 14px;
  }

  .context-notice {
    padding: 25px;
  }

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

  .footer-divider {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
