/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #141414;
    color: #fff;
    line-height: 1.6;
    background: url('images/background.jpg') no-repeat center center/cover;
  }
  
  a {
    text-decoration: none;
    color: #fff;
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }
  
  .logo {
    font-size: 25px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
  }
  
  .navbar a {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    margin-left: 35px;
    transition: .3s;
  }
  
  .navbar a:hover, 
  .navbar a.active {
    color: #00abf0;
  }
  
  /* Content Section */
  .content-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 120px 10%;
    gap: 50px;
  }
  
  .content-left {
    width: 30%;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
  }
  
  .content-left h1 {
    font-size: 26px;
    color: #ff6a00;
    margin-bottom: 20px;
  }
  
  .content-left .btn-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .content-left a {
    display: block;
    padding: 10px 15px;
    background-color: #ff6a00;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s;
  }
  
  .content-left a:hover {
    background-color: #e65c00;
  }
  
  .content-right {
    width: 65%;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
  }
  
  .content-right h2 {
    color: #00abf0;
    margin-bottom: 10px;
  }
  
  .content-right p, .content-right ul {
    margin-bottom: 20px;
  }
  
  .content-right ul {
    list-style: disc;
    margin-left: 20px;
  }
  
  .content-left img.responsive-image {
    width: 100%; 
    height: auto; 
    display: block; 
    border-radius: 10px; 
    margin-top: 15px; 
    margin-bottom: 15px;
  }
  