
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  header {
    background: #2a9d8f;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .hero {
    background: url('images/hawk.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  }
  
  .hero h1 {
    font-size: 2.5rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  main {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 2rem 0;
    border: 2px solid #2a9d8f;
    border-radius: 8px;
  }
  
  .video-container video,
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  footer {
    background: #264653;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
  }
  
  @media (max-width: 600px) {
    nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .hero h1 {
      font-size: 1.8rem;
    }
  }
  