* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .main {
    width: 100%;
    height: 100vh;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 100%), 
                url('1.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }
  
  .active {
    text-decoration: underline #ff7200;
    text-decoration-thickness: 3px;
    
  }
  

  .navbar {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .icon {
    display: flex;
    align-items: center;
  }
  
  .logo {
    color: #ff7200;
    font-size: 35px;
    font-family: Arial, sans-serif;
  }
  
  .menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
  }
  
  ul li a {
    text-decoration: none;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: color 0.4s ease-in-out;
  }
  
  ul li a:hover {
    color: #ff7200;
  }
  
  .btn {
    width: 100px;
    height: 40px;
    background-color: #ff7200;
    border: 2px solid #ff7200;
    color: #fff;
    font-size: 15px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
  }
  
  .btn:focus, .srch:focus {
    outline: none;
  }
  
  /* Content Layout */
  .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin-top: 50px;
  }
  
  .content {
    flex: 1;
    color: white;
    padding-right: 500px;
  }
  
  .content h1 {
    font-family: "Times New Roman";
    font-size: 50px;
    margin-bottom: 20px;
  }
  
  .content p {
    font-family: Arial;
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  
  .content .cn a {
    text-decoration: none;
    color: black; /* Ensure text is visible */
  }
  
  .content .cn {
    background-color: orange;
    color: black;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    font-size: 18px;
    text-decoration: none;
  }
  
  .cn:hover {
    background-color: white;
  }
  
  .content span {
    color: orange;
  }

  
  @media (max-width: 430px) {
  /* Styles for iPhones */
  .content {
    text-align: center;
    font-size: 18px;
  }
}
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      gap: 20px;
    }
  
    .menu ul {
      gap: 20px;
      flex-wrap: wrap;
    }
  
    .logo {
      font-size: 28px;
    }
  
  
  
    .container {
      flex-direction: column;
      align-items: center;
    }
  
   
  }