.process-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #ffffff;
}

.process-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 20px 0;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.process-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #666666;
  border-radius: 2px;
}

.process-description {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #e0e0e0;
  transform: translateX(-50%);
  z-index: 1;
}

.process-step {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  z-index: 2;
}

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

.process-step-left {
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
}

.process-step-right {
  justify-content: flex-start;
  padding-left: calc(50% + 40px);
}

.process-step-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 480px;
  border: 1px solid #f0f0f0;
  position: relative;
}

.process-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.process-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(41, 52, 132, 0.2);
  transition: all 0.3s ease;
}

.process-step-card:hover .process-step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(41, 52, 132, 0.3);
}

.process-step-content {
  width: 100%;
}

.process-step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.process-step-description {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.6;
}

.process-step-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-color);
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 3px #e0e0e0, 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-dot {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 0 3px var(--accent-color), 0 4px 12px rgba(41, 52, 132, 0.2);
}

.process-step-left .process-step-card::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid #ffffff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.process-step-right .process-step-card::after {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-right: 12px solid #ffffff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

@media (max-width: 1200px) {
  .process-timeline {
    max-width: 1100px;
  }

  .process-step-card {
    max-width: 460px;
  }

  .process-step-left {
    padding-right: calc(50% + 35px);
  }

  .process-step-right {
    padding-left: calc(50% + 35px);
  }
}

@media (max-width: 1024px) {
  .process-section {
    padding: 70px 20px;
  }

  .process-header {
    margin-bottom: 55px;
  }

  .process-title {
    font-size: 34px;
  }

  .process-description {
    font-size: 17px;
  }

  .process-timeline {
    max-width: 100%;
    padding: 35px 0;
  }

  .process-step {
    margin-bottom: 55px;
  }

  .process-step-left {
    padding-right: calc(50% + 25px);
    padding-left: 20px;
  }

  .process-step-right {
    padding-left: calc(50% + 25px);
    padding-right: 20px;
  }

  .process-step-card {
    max-width: 420px;
    padding: 28px;
  }

  .process-step-header {
    gap: 18px;
    margin-bottom: 18px;
  }

  .process-step-number {
    width: 48px;
    height: 48px;
    font-size: 21px;
  }

  .process-step-title {
    font-size: 23px;
  }

  .process-step-description {
    font-size: 15.5px;
  }

  .process-step-dot {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }
}

@media (max-width: 900px) {
  .process-section {
    padding: 65px 20px;
  }

  .process-header {
    margin-bottom: 50px;
  }

  .process-title {
    font-size: 32px;
  }

  .process-timeline {
    padding: 32px 0;
  }

  .process-step-left {
    padding-right: calc(50% + 20px);
  }

  .process-step-right {
    padding-left: calc(50% + 20px);
  }

  .process-step-card {
    max-width: 380px;
    padding: 26px;
  }

  .process-step-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 60px 20px;
  }

  .process-header {
    margin-bottom: 50px;
  }

  .process-title {
    font-size: 32px;
  }

  .process-description {
    font-size: 16px;
  }

  .process-timeline {
    padding: 30px 0;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    margin-bottom: 50px;
  }

  .process-step-left,
  .process-step-right {
    padding-left: 80px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .process-step-card {
    max-width: 100%;
  }

  .process-step-card::after {
    display: none;
  }

  .process-step-dot {
    left: 30px;
  }

  .process-step-header {
    gap: 15px;
  }

  .process-step-number {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .process-step-title {
    font-size: 22px;
  }

  .process-step-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 50px 15px;
  }

  .process-header {
    margin-bottom: 40px;
  }

  .process-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .process-description {
    font-size: 15px;
  }

  .process-timeline {
    padding: 25px 0;
  }

  .process-timeline::before {
    left: 25px;
    width: 2px;
  }

  .process-step {
    margin-bottom: 40px;
  }

  .process-step-left,
  .process-step-right {
    padding-left: 65px;
  }

  .process-step-card {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .process-step-dot {
    left: 25px;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .process-step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
  }

  .process-step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .process-step-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .process-step-description {
    font-size: 14px;
  }
}
