
body {
  margin: 0;
  padding: 20px 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  background: linear-gradient(to right, #f8faff, #e9f0ff);
  color: #222;
}

.baslik-ortali {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 40px;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.grup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #ccddee;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  gap: 20px;
}

.item {
  flex: 1 1 45%;
  display: flex;
  align-items: flex-start;
}

.item img {
  width: 140px;
  margin-right: 15px;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.item p {
  text-align: left;
}

.yan-cizgi {
  position: fixed;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background-color: #003366;
}

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

  .item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .item img {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .item p {
    text-align: left;
  }
}
