* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  padding-top: 100px; 
  background-color: #f9f9f9;
}


.page-container {
  padding: 30px 50px;
  background-color: #c7c6c6;
}

.main-content img.main-img {
  width: 250px;
  margin-bottom: 20px;
}

.ad-img {
  width: 100%;
  margin-top: 30px;
}

.iconn {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 24px;
}
.sidebar h4 {
  margin-bottom: 10px;
}

.sidebar img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.main-content {
  flex: 3;
  border-right: 1px solid #4c4a4a;
  padding-right: 20px;
  color: #333;
}


h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #111;
}

.main-img, .ad-img, .sidebar img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #E1A624;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 900;
}

.logo img {
  height: 100px;
}

#nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

#nav-links li {
  font-size: 18px;
}

#nav-links li a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#nav-links li a:hover {
  color: white;
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: black;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.menu-toggle:hover {
  background-color: #ccc;
}



@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #nav-links {
    flex-direction: column;
    background-color: #E1A624;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    display: none;
    text-align: center;
    padding: 20px 0;
  }

  #nav-links.active {
    display: flex;
  }
}



.footer {
  background-color: #555;
  margin-top: 70px;
  color: #ddd;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-section h3, .footer-section h4 {
  color: white;
  margin-bottom: 15px;
}

.footer-section ul {list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: white;
}

.social-icons a {
  color: #bbb;
  margin-right: 15px;
  font-size: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  color: #888;
  font-size: 14px;
  background-color:#E1A624 ;
  width: 100%;
}
.iconn {
  display: flex;
  gap: 20px;
}

.iconn i {
  color: #E1A624;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.iconn i:hover {
  color: #fff;
}
