:root {
  --color-primary: #f59e0b;
  --color-primary-dark: #d97706;
  --color-secondary: #10b981;
  --color-accent: #3b82f6;
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-bg: #ffffff;
  --color-bg-light: #f9fafb;
  --color-border: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --rounded-sm: 0.125rem;
  --rounded-md: 0.375rem;
  --rounded-lg: 0.5rem;
  --rounded-xl: 0.75rem;
  --rounded-full: 9999px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font-family: inherit;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, #f59e0b, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.nav-desktop {
  display: none;
}

.nav-desktop a {
  font-weight: 500;
  color: var(--color-text-light);
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

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

.btn-primary {
  background: linear-gradient(to right, #f59e0b, #f97316);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--rounded-full);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: linear-gradient(to right, #d97706, #ea580c);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.mobile-menu-btn {
  padding: 0.5rem;
  color: var(--color-text-light);
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn:hover {
  color: var(--color-primary-dark);
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  right: 0;
  top: 0;
  height: 60vh;
  width: 100%;
  max-width: 400px;
  background-color: white;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.open .mobile-menu {
  transform: translateX(0);
}

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

.mobile-menu-header .close-btn {
  padding: 0.5rem;
  color: var(--color-primary-dark);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.mobile-menu-header .close-btn:hover {
  color: var(--color-text);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem;
}

.mobile-menu-nav a {
  font-weight: 500;
  color: var(--color-text-light);
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  display: block;
}

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

/* Hero Section */
.hero {
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #fef9c3, #ffedd5, #ecfccb);
}

.hero-container {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 6rem);
}

.hero-content {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
}

.hero-title .gradient-text {
  background: linear-gradient(to right, #b45309, #c2410c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-secondary {
  border: 2px solid var(--color-primary);
  color: var(--color-primary-dark);
  padding: 1rem 2rem;
  border-radius: var(--rounded-full);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.hero-asset {
  position: relative;
}

.egg-container {
  cursor: pointer;
}

.egg-container svg {
  width: 16rem;
  height: 20rem;
  transition: transform 0.3s ease;
}

.egg-container:hover svg {
  transform: scale(1.05);
}

.floating-element {
  position: absolute;
  animation: floatSlow 6s ease-in-out infinite;
}

.floating-element.medium {
  animation: floatMedium 4s ease-in-out infinite;
}

.floating-element.fast {
  animation: float 3s ease-in-out infinite;
}

/* Features Section */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.1);
  background: linear-gradient(to bottom right, #fef9c3, #ffedd5);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-0.5rem);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--color-text-light);
}

/* How to Play Section */
.how-to-play {
  background: linear-gradient(to bottom right, #fef9c3, #ffedd5);
}

.steps-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-demo {
  margin-bottom: 1.5rem;
}

.step-demo svg {
  width: 6rem;
  height: 6rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.step-demo svg:hover {
  transform: scale(1.1);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--color-text-light);
}

/* Showcase Section */
.showcase-container {
  background: linear-gradient(to bottom right, #dcfce7, #dbeafe);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 56rem;
  margin: 0 auto;
}

.farm-scene {
  position: relative;
  height: 24rem;
}

.farm-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #bfdbfe, #86efac);
  border-radius: 0.5rem;
}

.stats-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  border-radius: 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.stat-card {
  margin-bottom: 80px;
}

/* Progression Section */
.progression {
  background: linear-gradient(to bottom right, #ecfccb, #d1fae5);
}


.progression-grid {
  display: grid;
  gap: 2rem;
}

.progression-item {
  padding: 1.5rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(251, 191, 36, 0.1);
  transition: box-shadow 0.3s ease;
}

.progression-item:hover {
  box-shadow: var(--shadow-xl);
}

.progression-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.progression-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.progression-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.progression-description {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.progression-unlock {
  font-size: 0.875rem;
  color: var(--color-primary-dark);
  font-weight: 500;
}

.upgrades-container {
  margin-top: 4rem;
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.upgrades-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.upgrades-grid {
  display: grid;
  gap: 1.5rem;
}

.upgrade-card {
  text-align: center;
  padding: 1rem;
  border: 2px dashed var(--color-border);
  border-radius: 0.75rem;
  transition: border-color 0.3s ease;
}

.upgrade-card:hover {
  border-color: var(--color-primary);
}

.upgrade-emoji {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.upgrade-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.upgrade-effect {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.upgrade-price {
  font-weight: 700;
  color: var(--color-primary-dark);
}

/* Social Proof Section */
.stats-container {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-item-value {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item-label {
  color: var(--color-text-light);
}

.reviews-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.review-card {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
}

.review-stars {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.review-text {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #f59e0b, #f97316);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--rounded-full);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.featured-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(to bottom right, #f59e0b, #f97316, #ef4444);
  color: white;
}

.cta-container {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.demo-container {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.demo-game {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.demo-interaction {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.demo-egg {
  cursor: pointer;
  transition: transform 0.15s ease;
}

.demo-egg svg {
  width: 5rem;
  height: 6rem;
}

.demo-egg:hover {
  transform: scale(1.1);
}

.demo-counter {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.demo-instruction {
  font-size: 0.875rem;
  opacity: 0.75;
  margin-top: 1rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.btn-white {
  background-color: white;
  color: var(--color-primary-dark);
  padding: 1rem 2rem;
  border-radius: var(--rounded-full);
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-white:hover {
  background-color: #f3f4f6;
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--rounded-full);
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

/* FAQ Section */
.faq {
  background-color: var(--color-bg-light);
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--color-bg-light);
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

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

.faq-item.active .faq-answer {
  display: block;
}

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

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to bottom right, #f59e0b, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo svg {
  width: 1rem;
  height: 1rem;
  color: white;
}

.footer-text {
  color: #9ca3af;
  margin-bottom: 1rem;
  max-width: 24rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: white;
}

.footer-links-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.newsletter-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.newsletter-text {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem 1rem;
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem 0 0 0.5rem;
  color: white;
  outline: none;
}

.newsletter-input:focus {
  border-color: #f59e0b;
}

.newsletter-button {
  background-color: #f59e0b;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0 0.5rem 0.5rem 0;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-button:hover {
  background-color: #d97706;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatMedium {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(-5deg);
  }
}

@keyframes eggBounce {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.02);
  }
}

@keyframes crack {
  0% {
    stroke-dasharray: 0 200;
    opacity: 0;
  }

  50% {
    stroke-dasharray: 100 200;
    opacity: 1;
  }

  100% {
    stroke-dasharray: 200 200;
    opacity: 1;
  }
}

@keyframes chickAppear {
  0% {
    opacity: 0;
    transform: translate(100px, 120px) scale(0) rotate(-180deg);
  }

  50% {
    opacity: 1;
    transform: translate(100px, 120px) scale(1.2) rotate(10deg);
  }

  100% {
    opacity: 1;
    transform: translate(100px, 120px) scale(1) rotate(0deg);
  }
}

@keyframes driveBy {
  0% {
    transform: translateX(-100px);
  }

  100% {
    transform: translateX(calc(100vw + 100px));
  }
}

@keyframes pecking {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Responsive Styles */
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .header-container {
    padding: 0.75rem 2rem;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-container {
    flex-direction: row;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .hero-content {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-asset {
    flex: 1;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .progression-item:nth-child(odd) {
    text-align: right;
  }

  .progression-item:nth-child(even) {
    grid-column-start: 2;
    text-align: left;
  }

  .upgrades-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* Policy Pages */
.policy-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 0;
}

.policy-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.policy-text {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.policy-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.policy-list a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

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