.hakkimizda-wrapper {
  padding: 40px 20px;
  font-family: "Segoe UI", sans-serif;
}

.hakkimizda-title {
  text-align: center;
  margin-bottom: 30px;
}

.hakkimizda-title h1 {
  font-size: 24px;
  font-weight: 600;
  color: #1b1b1b;
}

.hakkimizda-container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.sidebar-menu {
  flex: 0 0 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  padding: 20px;
  height: fit-content;
}

.sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu ul li {
  margin-bottom: 10px;
}

.sidebar-menu ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  padding: 12px 15px;
  border-radius: 6px;
  transition: background 0.2s;
}

.sidebar-menu ul li a:hover,
.sidebar-menu ul li a.active {
  background-color: #f3f6fd;
  color: #3366ff;
  font-weight: 500;
}

.sidebar-menu ul li a::after {
  content: "›";
  font-size: 13px;
  color: #aaa;
}

.hakkimizda-content {
  flex: 1;
  min-width: 300px;
}

.page-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 30px;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}

.page-box h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
}

.page-box hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 25px 0;
}

.info-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.info-table .full-width {
  grid-column: 1 / -1;
}

.link-text {
  margin-top: 25px;
  font-size: 14px;
}

.link-text a {
  color: #3269f5;
  text-decoration: none;
  font-weight: 500;
}

.link-text a:hover {
  text-decoration: underline;
}

.contract-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.contract-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  padding: 12px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.contract-row:hover {
  background: #eaf1ff;
  border-color: #b4ccff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.contract-name {
  font-weight: 500;
}

.contract-action {
  font-weight: bold;
  color: #0056b3;
}


@media (max-width: 768px) {
  .hakkimizda-container {
    flex-direction: column;
  }

  .sidebar-menu {
    width: 100%;
    margin-bottom: 20px;
  }
}