    body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    }

    .parallax-hero {
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    .card-hover {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

    .btn-ripple {
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .btn-ripple:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(201, 122, 61, 0.3);
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .counter {
      font-size: 2.5rem;
      font-weight: 700;
      color: #C97A3D;
    }

    .sticky-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .sticky-header.scrolled {
      background-color: rgba(246, 247, 245, 0.98);
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    }

    .timeline-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, #C97A3D, #8DAA91);
      transform: translateX(-50%);
    }

    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal-content {
      background: white;
      border-radius: 8px;
      max-width: 500px;
      width: 90%;
      max-height: 90%;
      overflow-y: auto;
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }

    .modal-overlay.active .modal-content {
      transform: scale(1);
    }

    .slider-container {
      position: relative;
      overflow: hidden;
    }

    .slider-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 4px;
      background: #C97A3D;
      cursor: ew-resize;
      z-index: 10;
    }

    .slider-handle::before {
      content: '⟷';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #C97A3D;
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    @media (max-width: 768px) {
      .timeline-line {
        left: 20px;
      }
    }

.slideshow-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: fade 12s infinite;
}

/* Optional fade effect */
@keyframes fade {
  0% {opacity: 1;}
  33% {opacity: 0;}
  66% {opacity: 0;}
  100% {opacity: 1;}
}
