body {
  font-family: 'Saira Condensed', sans-serif;
  margin: 0;
  background: #111;
  color: #fff;
}
h1, h2 {
  color: #ffa500;
  margin-bottom: 10px;
}
h1 {
  text-align: center;
  margin: 20px 0;
}
h2 {
  margin-top: 30px;
  font-size: 20px;
}
.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  padding-bottom: 100px;
}
.logo-wrapper {
  text-align: center;
  margin: 20px 0;
}
.logo-wrapper img {
  max-width: 200px;
  height: auto;
}
.section {
  margin-bottom: 50px;
  scroll-margin-top: 80px;
}
.item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #333;
  font-size: 18px;
  cursor: pointer;
}
.item.no-accordion {
  cursor: default;
}
.item-h {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: red;
  font-size: 18px;
}
.item span {
  display: inline-block;
}
.footer-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 1000;
  height: 60px;
}
.footer-menu i {
  font-size: 22px;
  color: #ffa500;
  cursor: pointer;
}
.footer-menu a {
  color: inherit;
  text-decoration: none;
}
.category-drawer {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 50%;
  width: 50%;
  background: #232323;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 20px;
  padding-bottom: 80px;
  z-index: 1000;
}
.category-drawer.show {
  transform: translateX(0);
  opacity: 1;
}
.category-drawer h3 {
  color: #ffa500;
  margin-bottom: 10px;
}
.category-drawer ul {
  list-style: none;
  padding: 0;
}
.category-drawer ul li {
  padding: 8px 0;
  border-bottom: 1px solid #333;
}
.category-drawer a {
  color: #fff;
  text-decoration: none;
}
.category-drawer a:hover {
  color: #ffa500;
}
@media (max-width: 600px) {
  .category-drawer {
    width: 70%;
  }
}
.contact {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-btn {
  background: #ffa500;
  color: #111;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 18px;
  font-family: 'Saira Condensed', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}
.contact-btn:hover {
  background: #ff8800;
}
.contact-btn i {
  font-size: 20px;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: max-height 0.3s ease;
  background: #1b1b1b;
  padding: 0 10px;
  border-bottom: 1px solid #333;
}
.accordion-content.open {
  max-height: 300px;
}
.accordion-content img {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 10px;
}
.accordion-content .desc {
  flex: 1;
  color: #ccc;
  font-size: 16px;
  line-height: 1.4;
}
