.assist-container {
  max-width: 800px;
  margin: 7rem auto 2rem;
  padding: 40px 20px;
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.section p {
  margin-bottom: 20px;
  text-align: justify;
}

.data-section {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.data-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.data-icon img {
  width: 60px;
  height: auto;
}

.data-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
}

.data-details {
  margin-bottom: 30px;
}

.data-details h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.data-item {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.data-item:last-child {
  border-bottom: none;
}

.data-label {
  font-weight: bold;
  min-width: 200px;
  color: #555;
}

.data-value {
  color: var(--text-color);
  flex: 1;
}

.instructions {
  background: #fafafa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.instructions h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.instructions ol {
  margin-left: 20px;
}

.instructions li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .method-container {
    margin-top: 5rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .data-section {
    padding: 25px 20px;
  }

  .data-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .data-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .data-title {
    font-size: 1.5rem;
  }

  .data-details h3,
  .instructions h3 {
    font-size: 1.2rem;
  }

  .data-item {
    flex-direction: column;
    gap: 5px;
  }

  .data-label {
    min-width: auto;
    font-size: 0.9rem;
  }

  .instructions {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .data-title {
    font-size: 1.3rem;
  }

  .data-details h3,
  .instructions h3 {
    font-size: 1.1rem;
  }
}
