/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #007BFF;
    color: #fff;
    padding: 1rem 0;
  }
  .header .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .nav-links {
    list-style: none;
    display: flex;
  }
  .nav-links li {
    margin-left: 20px;
  }
  .nav-links a {
    color: #fff;
    text-decoration: none;
  }
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }
  
  /* Responsive Navbar */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: #007BFF;
      position: absolute;
      top: 100%;
      right: 0;
      width: 100%;
    }
    .nav-links.active {
      display: flex;
    }
    .menu-toggle {
      display: block;
    }
  }
  
  /* Hero Section */
  .hero {
    background: #0056b3;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
  }
  .hero h2 {
    font-size: 2.5rem;
  }
  .hero .btn {
    display: inline-block;
    margin-top: 1rem;
    background: #fff;
    color: #0056b3;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
  }
  
  /* Sections */
  section {
    padding: 2rem 0;
  }
  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .content-list {
    list-style: none;
    padding-left: 0;
  }
  .content-list li {
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  /* Footer */
  .footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }
  .footer .social-links {
    margin-top: 0.5rem;
  }
  .footer .social-link {
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
  }
  