.mktar-terms-container {
  display: flex;
  gap: 30px;
  font-family: Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.mktar-terms-sidebar {
  width: 250px;
  position: sticky;
  top: 20px;
  height: fit-content;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.mktar-terms-sidebar-title {
  color: #2c3e50;
  font-size: 18px;
  margin-top: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.mktar-terms-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mktar-terms-menu li {
  margin-bottom: 8px;
}

.mktar-term-link {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 6px 0;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.mktar-term-link:hover,
.mktar-term-link.active {
  color: #0066cc;
  border-left-color: #0066cc;
  padding-left: 10px;
}

.mktar-terms-content {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mktar-terms-main-title {
  color: #2c3e50;
  margin-top: 0;
}

.mktar-term-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.mktar-term-title {
  color: #0066cc;
}

@media (max-width: 768px) {
  .mktar-terms-container {
    flex-direction: column;
  }
  
  .mktar-terms-sidebar {
    width: 100%;
    position: static;
    margin-bottom: 20px;
  }
}
.mktar-term-update {
  text-align: center;
  color: #666;
  margin-top: -15px;
  margin-bottom: 30px;
}

.mktar-term-note {
  color: #777;
  font-style: italic;
  margin-top: 15px;
}

.mktar-term-list {
  padding-right: 20px;
}

.mktar-term-sublist {
  padding-right: 15px;
}

.mktar-contact-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
}

.mktar-contact-title {
  color: #2c3e50;
  margin-top: 0;
}

.mktar-contact-box a {
  color: #0066cc;
}

.fas {
  margin-left: 5px;
}