/* —— Basic Reset —— */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 70px;
  }
  
  /* —— Containers —— */
  .container {
    max-width: 1000px;
    margin: auto;
    padding: 1rem;
  }
  
  /* —— Hero Section —— */
  #hero {
    background: url('../img/hero.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
  }
  #hero h1 {
    font-size: 3em;
    margin-bottom: .5em;
  }
  #hero .btn {
    background: #007bff;
    padding: .8em 1.4em;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: .25s ease;
  }
  #hero .btn:hover {
    background: #0056b3;
  }
  
  /* —— Sections —— */
  section {
    padding: 4rem 0;
  }
  section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2em;
  }
  
  /* —— Call to Action —— */
  #cta {
    background: #f8f8f8;
    text-align: center;
  }
  #cta .btn {
    background: #28a745;
    color: #fff;
  }
  #cta .btn:hover {
    background: #1e7e34;
  }
  
  /* —— Footer —— */
  footer {
    text-align: center;
    padding: 2rem 0;
    background: #222;
    color: #fff;
  }
  
  /* —— Navigation —— */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    z-index: 1000;
  }
  
  .nav-container {
    max-width: 1100px;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color .2s;
  }
  
  .nav-links a:hover {
    color: #007bff;
  }
  
  /* —— Mobile Menu —— */
  .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .burger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: .3s;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 70px;
      right: 0;
      background: #fff;
      width: 100%;
      flex-direction: column;
      align-items: center;
      display: none;
    }
  
    .nav-links li {
      margin: 1rem 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .burger {
      display: flex;
    }
  }
  