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

:root {
  --primary-green: #336600;
  --white: #FFFFFF;
  --dark-grey: #333333;
  --light-grey: #F0F0F0;
  --subtle-brown: #8B4513;
  --primary-green-dark: #2E5C00;
  --primary-green-light: #669933;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dark-grey);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

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

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

.header.scrolled {
  height: 60px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
}

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

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

.logo.scrolled img {
  height: 40px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-grey);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-green);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}

.mobile-cta-btn svg {
  width: 16px;
  height: 16px;
}

.mobile-menu {
  position: fixed;
  top: 68px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 68px);
  background: var(--white);
  transition: right 0.3s ease;
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 24px 16px;
}

.mobile-menu-nav {
  margin-bottom: 24px;
}

.mobile-menu-nav li {
  border-bottom: 1px solid var(--light-grey);
}

.mobile-menu-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-grey);
}

.mobile-menu-contact {
  padding: 20px;
  background: var(--light-grey);
  border-radius: 12px;
}

.mobile-menu-contact h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.mobile-menu-contact a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-grey);
}

/* Desktop Header */
.desktop-nav {
  display: none;
}

.desktop-cta {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 68px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

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

.hero h1 {
  font-size: 32px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-green);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(51, 102, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(51, 102, 0, 0.5);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
}

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

/* Section Styles */
section {
  padding: 60px 0;
}

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

.section-dark {
  background: var(--dark-grey);
  color: var(--white);
}

.section-green {
  background: var(--primary-green);
  color: var(--white);
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--dark-grey);
  text-align: center;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--dark-grey);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.9);
}

/* Problem Acknowledgement */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.problem-card {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.problem-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.problem-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 14px;
  color: #666;
}

/* Why Us Differentiators */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-us-card {
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-us-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-us-card h3 svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.why-us-card ul li {
  padding: 8px 0;
  font-size: 15px;
  position: relative;
  padding-left: 20px;
}

.why-us-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

/* Services Overview */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card svg {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.service-card .learn-more {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
}

.services-cta {
  text-align: center;
  margin-top: 32px;
}

.secondary-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease, color 0.3s ease;
}

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

/* Process Section */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: #666;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card .stars {
  color: var(--primary-green);
  margin-bottom: 12px;
  font-size: 18px;
}

.testimonial-card blockquote {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-card cite {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-grey);
}

/* Service Area Map */
.service-area-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.map-container {
  background: var(--light-grey);
  border-radius: 12px;
  padding: 24px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 300px;
}

.map-area {
  padding: 12px;
  background: var(--white);
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.map-area.active {
  background: var(--primary-green);
  color: var(--white);
}

.area-list h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.area-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-list li {
  padding: 8px 16px;
  background: var(--white);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Common Wildlife Focus */
.wildlife-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.wildlife-tab {
  padding: 12px 20px;
  background: var(--white);
  border: 2px solid var(--light-grey);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wildlife-tab.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
}

.wildlife-content {
  display: none;
}

.wildlife-content.active {
  display: block;
}

.wildlife-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.wildlife-image {
  border-radius: 12px;
  overflow: hidden;
  background: var(--light-grey);
  min-height: 250px;
}

.wildlife-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wildlife-details h4 {
  font-size: 22px;
  margin-bottom: 16px;
}

.wildlife-details ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: 15px;
}

/* Attic Remediation */
.attic-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.attic-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--light-grey);
}

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

.attic-card .label {
  padding: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.attic-card.before .label {
  background: #666;
  color: var(--white);
}

.attic-card.after .label {
  background: var(--primary-green);
  color: var(--white);
}

.attic-services {
  margin-top: 32px;
}

.attic-services ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.attic-services li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.attic-services li svg {
  width: 24px;
  height: 24px;
  color: var(--primary-green);
  flex-shrink: 0;
}

/* Emergency CTA Banner */
.emergency-banner {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #2E5C00 100%);
}

.emergency-banner h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.emergency-banner p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.emergency-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--primary-green);
  padding: 18px 32px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.emergency-cta:hover {
  transform: scale(1.05);
}

.emergency-cta svg {
  width: 24px;
  height: 24px;
}

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

.faq-item {
  border-bottom: 1px solid var(--light-grey);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-grey);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.faq-answer p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* Contact Form CTA */
.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-form {
  padding: 24px;
  background: var(--light-grey);
  border-radius: 12px;
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-grey);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-submit:hover {
  background: var(--primary-green-dark);
}

.contact-details {
  padding: 24px;
}

.contact-details h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 16px;
  margin-bottom: 16px;
}

.contact-details a {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.contact-details .hours {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--light-grey);
}

/* Footer */
.footer {
  background: var(--dark-grey);
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 40px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 16px;
}

.footer-brand .copyright {
  font-size: 12px;
  opacity: 0.6;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--primary-green);
}

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

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-green);
}

.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--primary-green);
}

.footer-contact a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-contact .availability {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 12px;
}

.footer-social h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--primary-green);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-green);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  opacity: 0.6;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 20px;
  }

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

  .hero p {
    font-size: 22px;
  }

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

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

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

  .process-step {
    gap: 30px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

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

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

  .wildlife-info {
    grid-template-columns: 1fr 1fr;
  }

  .attic-comparison {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cta-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* Desktop Styles */
@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }

  /* Desktop Header */
  .header {
    height: 80px;
  }

  .header.scrolled {
    height: 70px;
  }

  .mobile-menu,
  .mobile-cta-btn,
  .nav-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .desktop-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-grey);
    position: relative;
    padding: 8px 0;
  }

  .desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease, left 0.3s ease;
  }

  .desktop-nav a:hover::after {
    width: 100%;
    left: 0;
  }

  .desktop-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .desktop-cta .phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
  }

  .desktop-cta .email {
    font-size: 13px;
    color: #666;
  }

  .hero {
    margin-top: 80px;
  }

  .hero h1 {
    font-size: 56px;
    max-width: 800px;
    margin: 0 auto 20px;
  }

  .hero p {
    font-size: 24px;
    max-width: 600px;
    margin: 0 auto 32px;
  }

  section {
    padding: 80px 0;
  }

  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .why-us-grid {
    gap: 32px;
  }

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

  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 16%;
    right: 16%;
    height: 3px;
    background: var(--primary-green);
    z-index: 0;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .step-number {
    margin-bottom: 16px;
  }

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

  .map-placeholder {
    grid-template-columns: repeat(4, 1fr);
    max-width: 400px;
  }

  .wildlife-tabs {
    justify-content: center;
  }

  .wildlife-tab {
    padding: 14px 28px;
    font-size: 16px;
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}