body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
  }
  
  .pubs-landing {
    background: url('https://source.unsplash.com/1600x900/?pub') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
    color: #fff;
  }
  
  /* Dark overlay to soften the background image */
  .pubs-landing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  /* Main container positioned above the overlay */
  .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
  }
  
  /* Highlight Box to frame the text and buttons */
  .highlight-box {
    background: rgba(0, 0, 0, 0.7); /* semi-transparent background */
    padding: 40px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  /* Headings and paragraphs within the box */
  h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
  }
  
  p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #ddd;
  }
  
  .buttons {
    margin-top: 30px;
  }
  
  /* Styled buttons */
  .btn {
    text-decoration: none;
    background-color: #ff6b6b;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #ff4c4c;
  }
  