body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0e0e0e;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Header*/
header {
  background-color: #101010;
  padding: 2px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  flex-wrap: wrap;
}

.logo img {
  height: 100px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 100px;
  font-size: 150%;
}

nav ul li a{
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

nav ul li a:hover{
  color:rgb(255, 64, 0);
}

header .co a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  background-color: #ff6200;
  border-radius: 5px;
  margin-right: 20px;
}

header .co a:hover {
    background-color: #202020;
  }

.header2 {
    background-color: #1e1e1e;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #ff6200;
}

.header2 h1 {
    margin: 0;
    color: #ff6200;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

h2 {
    color: #ff6200;
}

a {
    color: #ff6200;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

  /*footer*/

  .footer {
    background-color: #121212;
    color: #ccc;
    padding-top: 30px;
    font-size: 15px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding:0 10rem;
  }
  
  .footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
  }
  
  .footer-logo p {
    max-width: 250px;
  }
  
  .footer-links,
  .footer-contact,
  .footer-social {
    min-width: 180px;
  }
  
  .footer-links h4,
  .footer-contact h4,
  .footer-social h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li,
  .footer-contact li {
    margin-bottom: 0.5rem;
  }
  
  .footer a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #ff7300;
  }
  
  
  .footer-bottom {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #2a2a2a;
    background-color: #0f0f0f;
  }