/* CSS for flat design */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
  }
  
  .container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
  }
  
  .header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    position: fixed;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header h1 {
    font-size: 24px;
    font-weight: bold;
  }
  
  .header ul {
    list-style-type: none;
    display: flex;
  }
  
  .header li {
    margin-right: 20px;
    position: relative;
  }
  
  .header a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .header a:hover {
    text-decoration: none;
  }
  
  .header a:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .header a:hover:after {
    transform: scaleX(1);
  }
  
  .content {
    margin-top: 120px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
  }

  .content2 {
    margin-top: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
  }
  
  .footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
  }
  
  .footer p {
    font-size: 12px;
  }
  
  .hero-image {
    width: 100%;
    height: 500px;
    background-image: url('./image.png');
    background-size: cover;
    background-position: center;
    border-radius: 5px;
  }
  
  /* Responsive design */
@media (max-width: 768px) {
    .header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .header h1 {
      margin-bottom: 10px;
    }
    
    .header ul {
      display: none;
    }
    
    .header .menu-icon {
      display: block;
      cursor: pointer;
      font-size: 20px;
      transition: color 0.3s ease-in-out;
    }
    
    .header .menu-icon:hover {
      color: #ccc;
    }
    
    .header .menu-icon.active {
      color: #fff;
    }
    
    .header .mobile-menu {
      display: none;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease-in-out;
    }
    
    .header .mobile-menu.active {
      display: block;
      max-height: 500px;
      transition: max-height 0.3s ease-in-out;
    }
    
    .header .mobile-menu ul {
      display: flex;
      flex-direction: column;
      padding: 0;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
    }
    
    .header .mobile-menu.active ul {
      opacity: 1;
      transition: opacity 0.3s ease-in-out 0.2s;
    }
    
    .header .mobile-menu li {
      margin: 10px 0;
    }
  }