/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
  }
  
  /* Header */
  header {
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo {
    height: 50px;
    margin-right: 15px;
  }
  
/* Hero Section */
.hero {
  background: url('images/golowlevel_banner.png') no-repeat center center;
  background-size: cover;
  text-align: center;
  color: #fff;
  padding: 150px 20px; /* Increased padding for a larger banner */
  min-height: 600px;   /* Ensures the banner has a minimum height */
}

  
  .hero-text {
    background: rgba(0, 0, 0, 0.5); /* Slight overlay for readability */
    display: inline-block;
    padding: 30px;
    border-radius: 8px;
  }
  
  .hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .btn {
    display: inline-block;
    text-decoration: none;
    background-color: #27ae60;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #2ecc71;
  }
  
  /* Content Sections */
  .content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .content h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Humor Section */
  .humor {
    background: #e0e0e0;
    border-left: 5px solid #e74c3c;
    padding: 20px;
    margin-top: 20px;
    font-style: italic;
  }
  
  .humor h3 {
    margin-top: 0;
    font-size: 24px;
    color: #e74c3c;
    font-style: normal;
  }
  
  .feature-list {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
  }
  
  .feature-list li {
    margin-bottom: 10px;
  }
  
  .feature-list span {
    font-weight: bold;
    color: #2c3e50;
  }
  
  /* Redirect Section */
  .redirect {
    text-align: center;
    margin-top: 20px;
  }
  
  .redirect p {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .redirect button {
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 5px;
  }
  
  .redirect button:hover {
    background-color: #c0392b;
  }
  
  /* Footer */
  footer {
    background: #34495e;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  