body {
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
  }
  [x-cloak] { display: none !important; }
    .scrollbar-hidden::-webkit-scrollbar { display: none; }
  .article-card:hover .article-overlay {
    opacity: 1;
  }
  .article-overlay {
    opacity: 0;
    transition: all 0.3s ease;
  }
  .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
  .hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
  }
  .hero-wave .shape-fill {
    fill: #ffffff;
  }
  .scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
  }
  .scrollToTop.active {
    opacity: 1;
    visibility: visible;
  }
  .slides {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
  }
  .slide {
    flex-shrink: 0;
    width: 100%;
  }
  .slider-arrow {
    transition: all 0.3s ease;
  }
  .slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
  }
  .dot {
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  .dot:hover, .dot.active {
    background-color: #e85d2c;
  }
  .mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
  }
  .mobile-menu.open {
    max-height: 500px;
  }
  @media (max-width: 768px) {
    .hero-content {
      order: 2;
    }
    .hero-image {
      order: 1;
    }
  }