.ekg-container {
  max-width: 900px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.intro-text {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.6;
  border-left: 5px solid var(--accent1);
  padding-left: 20px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, rgba(111, 4, 233, 0.05), transparent);
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 0 10px 10px 0;
}

.ekg-list-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ekg-custom-list {
  list-style: none;
  padding: 0;
}

.ekg-custom-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: #444;
  font-size: 1.05rem;
}

.ekg-custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent1);
  font-weight: bold;
  font-size: 1.2rem;
  background: rgba(111, 4, 233, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.procedure-details {
  background: linear-gradient(135deg, #f9f9ff, #fff);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 25px;
}

.gallery-item {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 200px;
  }
}
