.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  margin-left: auto; /* Fiyatı sağa hizalar */
}

body {
  font-family: "Arial", sans-serif;
  background-color: #121212;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
}
.header {
  background-color: #1e1e1e;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #444;
}
.logo {
  height: 100px;
  width: 300px; 
  display: block; 
  margin: auto;
 
}
.container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.item {
  background-color: #1e1e1e;
  color: #f0f0f0;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #444;
  border-radius: 8px;
  transition: transform 0.3s, background-color 0.3s;
}
.item:hover {
  transform: scale(1.02);
}
.sub-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #2a2a2a;
  border-radius: 5px;
}
.sub-item:last-child {
  margin-bottom: 0;
}
.section-title {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}
.price {
  font-weight: bold;
  color: #ff4d4d;
  font-size: 20px;
  margin-left: 10px; 
}
.sub-item span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .sub-item span {
    font-size: 16px;
  }
  .section-title {
    font-size: 20px;
  }
}
