/* Simple reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background-color: #f8f8f8;
  }
  
  /* Hero Section */
  .hero {
    background: url("images/background.jpg") center center / cover no-repeat;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .hero-content {
    background-color: rgba(0, 0, 0, 0.3); /* semi-transparent overlay */
    color: #fff;
    padding: 2rem;
    border-radius: 4px;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.5rem;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    background-color: #fafafa;
  }
  