.guide-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  min-height: 600px;
}

.sidebar {
  width: 300px;
  background-color: var(--primary-color);
  padding: 30px 0;
  flex-shrink: 0;
}

.guide-nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.guide-nav li {
  margin-bottom: 5px;
}

.guide-nav a {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.guide-nav a:hover,
.guide-nav a.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-left: 4px solid var(--secondary-color);
}

.guide-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.guide-section {
  display: none;
}

.guide-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.guide-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.accordion {
  margin-top: 20px;
}

.accordion-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  padding: 15px 20px;
  background-color: var(--light-bg);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: rgba(0, 169, 165, 0.1);
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: var(--transition);
}

.accordion-item.active .accordion-header {
  background-color: rgba(0, 169, 165, 0.15);
}

.accordion-item.active .accordion-header::after {
  content: '-';
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 20px;
  max-height: 2000px;
}

.accordion-content h4 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.accordion-content h4:first-child {
  margin-top: 0;
}

.accordion-content ul {
  margin-bottom: 15px;
}

.accordion-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Uygulama Adımları Bölümü */
.steps-container {
  margin-top: 40px;
}

.progress-container {
  height: 8px;
  background-color: var(--light-bg);
  border-radius: 4px;
  margin-bottom: 30px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.steps {
  position: relative;
}

.step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.step.active {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 30px;
  margin-bottom: 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.step-description {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.step-image {
  margin: 20px 0;
  text-align: center;
}

.step-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-details {
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.step-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .guide-container {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    padding: 15px 0;
  }
  
  .step.active {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .guide-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 15px;
  }
  
  .guide-nav a {
    padding: 8px 15px;
    border-left: none;
    border-bottom: 2px solid transparent;
    font-size: 14px;
  }
  
  .guide-nav a:hover,
  .guide-nav a.active {
    border-left: none;
    border-bottom: 2px solid var(--secondary-color);
  }
  
  .step-actions {
    flex-direction: column;
  }
}
