.webstudio_Albanian5-work-process-section {
  width: 100%;
  background-color: #ffffff;
  padding: 10px 5px;
  box-sizing: border-box;
}

.webstudio_Albanian5-work-process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.webstudio_Albanian5-process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 20px !important;
  position: relative;
}

.webstudio_Albanian5-process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 44px;
  top: 88px;
  height: calc(100% - 50px);
  width: 2px;
  background-color: #f0f0f0;
  z-index: 1;
}

.webstudio_Albanian5-process-step:last-child {
  margin-bottom: 0;
}

.webstudio_Albanian5-process-icon {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.webstudio_Albanian5-step-image {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.webstudio_Albanian5-process-step:hover .webstudio_Albanian5-step-image {
  transform: scale(1.05);
}

.webstudio_Albanian5-process-content {
  flex: 1;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webstudio_Albanian5-process-step:hover .webstudio_Albanian5-process-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.webstudio_Albanian5-step-title {
  font-family: 'Exo', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 12px;
  line-height: 1.4;
  position: relative;
  padding-bottom: 10px;
}

.webstudio_Albanian5-step-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #4a6bff;
  border-radius: 3px;
}

.webstudio_Albanian5-step-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .webstudio_Albanian5-work-process-container {
    padding: 24px;
  }
  
  .webstudio_Albanian5-process-step {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .webstudio_Albanian5-process-icon {
    margin: 0 auto;
  }
  
  .webstudio_Albanian5-process-step:not(:last-child)::after {
    left: 50%;
    top: 88px;
    height: 40px;
    width: 2px;
    transform: translateX(-50%);
  }
  
  .webstudio_Albanian5-step-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* 769px and larger screen sizes */
@media (min-width: 769px) {
  .webstudio_Albanian5-work-process-section .webstudio_Albanian5-work-process-container {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .webstudio_Albanian5-work-process-section .webstudio_Albanian5-process-step {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  .webstudio_Albanian5-work-process-container {
    padding: 16px;
    border-radius: 16px;
  }
  
  .webstudio_Albanian5-step-title {
    font-size: 20px;
  }
  
  .webstudio_Albanian5-step-description {
    font-size: 13px;
  }
  
  .webstudio_Albanian5-step-image {
    width: 70px;
    height: 70px;
  }
  
  .webstudio_Albanian5-process-step:not(:last-child)::after {
    top: 70px;
  }
}