/* Module: 4 Steps Approach */

/* Main Module Container */
.four-steps-module {
  width: 100%;
  box-sizing: border-box;
  padding: 60px 20px;
}

/* Main Container */
.four-steps-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Title Styles */
.four-steps-title {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  margin: 0 auto 60px;
  padding: 0;
}

/* Cards Container */
.four-steps-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Individual Card */
.four-steps-card {
  width: 323px;
  height: 370px;
  border-radius: 25px;
  border: 1px solid #D9D9D9;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 30px 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

/* Card Header - Contains Number and Title */
.four-steps-card-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
  min-height: 140px;
}

/* Background Number - Behind Title */
.four-steps-card-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 140px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #F577224D
  z-index: 0;
  pointer-events: none;
}

/* Card Title - Centered on Number */
.four-steps-card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* Card Description */
.four-steps-card-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #666666;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.four-steps-card-description p {
  margin: 0;
  padding: 0;
  color: #666666;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
}

/* Responsive: Tablet */
@media (max-width: 1200px) {
  .four-steps-module {
    padding: 40px 20px;
  }
  
  .four-steps-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
  
  .four-steps-cards {
    gap: 20px;
  }
  
  .four-steps-card {
    width: calc(50% - 10px);
    min-width: 250px;
    max-width: 282px;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .four-steps-module {
    padding: 32px 16px;
  }
  
  .four-steps-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .four-steps-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  
  .four-steps-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    padding: 24px 16px;
  }
  
  .four-steps-card-header {
    min-height: 100px;
    margin-bottom: 16px;
  }
  
  .four-steps-card-number {
    font-size: 100px;
    line-height: 1;
  }
  
  .four-steps-card-title {
    font-size: 18px;
    line-height: 1.2;
  }
  
  .four-steps-card-description {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .four-steps-card-description p {
    font-size: 16px;
    line-height: 1.4;
  }
}

