body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lobster', sans-serif;
  }
  
  .header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .header-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
  }
  
  .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  
  .image-container {
    margin: 10px 0;
  }
  
  .image-container img {
    width: auto;
    height: 250px;
    border-radius: 10px;
  }
  
  h1 {
    margin: 10px 0;
  }
  
  p {
    margin: 10px 0;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5c90b9;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
  }
  
  .footer {
    background: #aab8c4;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    width: 100%;
    bottom: 0;
  }
  
  .footer a {
    color: #ffffffb0;
    text-decoration: none;
    cursor: pointer;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .header-content {
        padding: 0 10px;
    }
  
    .image-container img {
        height: auto;
        max-width: 100%;
    }
  
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
  }