/* Basic Styles - Updated November 5,
2025*/ /* --- Media Queries --- */ /* Tablet */ @media (min-width: 600px) {
  .features {
    flex-direction: row;
  }

}
/* Responsive breakpoint */ @media (max-width: 768px) {
  .features {
    width: 95%;
    /* use more width on small screens */ flex-direction: column;
    /* stack articles vertically */ align-items: center;
    /* centre them */
  }
  .features article {
    margin: 10px 0;
    /* spacing between stacked articles */ width: 100%;
    /* full width for each article */
  }
  /* Remove left/right margins for first and last when stacked */ .features article:first-child,
  .features article:last-child {
    margin-left: 0;
    margin-right: 0;
  }
  @media (max-width: 768px) {
    .scrolled {
      background-color: #ffffff;
      box-shadow: 0 2px 5px rgba(0,
      0,
      0,
      0.2);
    }
    .mobile-only-button {
      display: inline-block;
      /* Or block,
      as needed */
    }

  }
  /* larger screens i.e. laptop */ @media (min-width: 992px) {
    .hero {
      padding: 6rem 4rem;
    }
    .features {
      padding: 2rem;
    }
    .mobile-only-button {
      display: none;
      /* removes the button on laptop */
    }
    /* Desktop */ @media (min-width: 1200px) {
      /* Hide on larger screens */ .mobile-only-button {
        display: none;
      }

    }

  }
  .attribution {
    background: #f4f4f4;
    padding: 4rem 2rem;
    text-align: center;
  }
  body {
    color: #333;
    font-family: Arial,
    Helvetica,
    sans-serif;
    line-height: 1.6;
    margin: 0;
  }
  header {
    background: #0077cc;
    color: #fff;
    padding: 1rem;
  }
  .page_heading {
    width: 100%;
  }
  .page_heading {
    background: #f4f4f4;
    color: #333;
    font-family: Arial,
    Helvetica,
    sans-serif;
    line-height: 1.6;
    padding: 4rem 2rem;
    text-align: center;
    /* Don't use width or height when using padding or border. width: 100%;
    */
  }
  .logo {
    align-items: left;
    display: flex;
    margin: 1rem;
    padding: 2rem;
  }
  .navbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    /* Responsive: Full width on smaller screens */ margin: 0 auto;
    max-width: 1200px;
  }
  .nav-links {
    display: flex;
    list-style: none;
    /*gap: 1rem;
    unknown property*/ margin: 1rem
  }
  .nav-links a {
    color: #fff;
    padding: 0.5rem 1rem;
    position: relative;
    text-decoration: none;
    /*Only allow transitions that trigger compositing for performant,
    60fps transformations. transition: color 0.3s ease;
    */
  }
  .nav-links a::after {
    background-color: #fff;
    bottom: 0;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    /*Only allow transitions that trigger compositing for performant,
    60fps transformations. transition: width 0.3s ease;
    */
  }
  .nav-links a:hover::after {
    width: 100%;
  }
  /* Mobile Menu Toggle */ .nav-links {
    /* transition: max-height 0.3s ease-out,
    opacity 0.3s ease-out;
    Only allow transitions that trigger compositing for performant,
    60fps transformations. */ max-height: 0;
    opacity: 0;
    overflow: hidden;
  }
  /* .nav-links.active */ .active {
    max-height: 500px;
    /* enough to show all links */ opacity: 1;
  }
  .menu-toggle {
    cursor: pointer;
    font-size: 1.8rem;
    padding: 0.5rem;
    /* transition: transform 0.3s ease;
    Only allow transitions that trigger compositing for performant,
    60fps transformations. */
  }
  .menu-toggle:hover {
    transform: scale(1.1);
  }
  .hero {
    background: #f4f4f4;
    padding: 4rem 2rem;
    text-align: center;
  }
  .cta {
    background: #0077cc;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
  }
  .features {
    display: flex;
    justify-content: space-around;
    /* Responsive: Stack on smaller screens */ margin: 1rem;
    max-width: 1200px;
    /* margin: 0 auto;
    */ padding: 2rem;
  }
  .features article {
    background: #e9f3fb;
    border-radius: 6px;
    flex: 1;
    padding: 1rem;
  }