.your-path-to-success-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  position: relative;
  overflow: hidden;
}

.your-path-to-success-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="path-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e0e7ff" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e0e7ff" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e0e7ff" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e0e7ff" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e0e7ff" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23path-grain)"/></svg>');
  pointer-events: none;
}

.your-path-to-success-section .container {
  background: rgba(255, 255, 255, 0.8);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.your-path-to-success-section .container h3 {
  font-size: 32pt;
  line-height: 1.2;
  margin: 0 0 40px 0;
  font-weight: 700;
  text-align: center;
  color: #2d3748;
}

.your-path-to-success-section .container span {
  color: #7d53de;
  background: linear-gradient(135deg, #7d53de 0%, #9c7ae8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.your-path-to-success-section .container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.your-path-to-success-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.your-path-to-success-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #7d53de 0%, #9c7ae8 100%);
  border-radius: 0 2px 2px 0;
}

.your-path-to-success-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7d53de 0%, #9c7ae8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(125, 83, 222, 0.3);
}

.step-content {
  flex: 1;
}

.step-content b {
  color: #7d53de;
  font-weight: 700;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.step-content {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .your-path-to-success-section {
    padding: 50px 20px;
  }

  .your-path-to-success-section .container {
    padding: 40px 25px;
    border-radius: 15px;
  }

  .your-path-to-success-section .container h3 {
    font-size: 26pt;
    margin-bottom: 30px;
  }

  .your-path-to-success-section .container ul {
    gap: 15px;
  }

  .your-path-to-success-card {
    padding: 20px 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .step-content b {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .step-content {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .your-path-to-success-section {
    padding: 40px 15px;
  }

  .your-path-to-success-section .container {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .your-path-to-success-section .container h3 {
    font-size: 22pt;
    margin-bottom: 25px;
  }

  .your-path-to-success-section .container ul {
    gap: 12px;
  }

  .your-path-to-success-card {
    padding: 18px 20px;
    gap: 12px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .step-content b {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .step-content {
    font-size: 14px;
  }
}
