.process-container {
  text-align: center;
  padding: 100px 20px;
  background-color: var(--secondary-color);
}
.process-header {
  margin-bottom: 20px;
}
.process-header h2 {
  font-size: 32px;
  color: #2c3e50;
}
.process-header p {
  font-size: 16px;
  color: #7f8c8d;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.step-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 250px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.step-card:hover {
  transform: translateY(-5px);
}
.step-card img {
  width: 50px;
  margin-bottom: 15px;
  border-radius: 8px;
}
.step-card h3 {
  font-size: 20px;
  color: #34495e;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: #95a5a6;
  line-height: 1.6;
}
.step-card a {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #e74c3c;
  text-decoration: none;
  border-bottom: 1px solid #e74c3c;
}
.step-card a:hover {
  text-decoration: none;
  border-bottom-color: #2c3e50;
}

.dashboard-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 50px;
  background-color: #fff;
}

.dashboard-content {
  max-width: 50%;
}

@media (max-width: 960px) {
  .dashboard-container {
    flex-direction: column;
  }
  .dashboard-container h2, .dashboard-container .dashboard-content-description {
    text-align: center;
  }
  .dashboard-content {
    max-width: 100%;
    width: 100%;
  }
}

.dashboard-content h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.dashboard-content p {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 15px;
}

.feature-item img {
  width: 40px;
  height: 40px;
}

.feature-item h3 {
  font-size: 18px;
  color: #34495e;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
  color: #95a5a6;
}

.dashboard-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
