@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');


body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #f9fcff; /* Light blue background, not overwhelming */
    color: #2C3E50; /* Dark blue text color */
}

.about-content {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 150px;
    B
}

h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.choose-step {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.choose-type {
    margin-top: 15px;
    font-size: 32px;
    color: #44596e;
}

.buttons-container {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.supplier-btn, .buyer-btn {
    padding: 10px 20px;
    font-size: 25px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 5px;
    color: white;
}

.buyer-btn {
    background-color: #2980B9; /* Darker blue for buttons */
}

.buyer-btn:hover {
    background-color: #1F6395; /* Slightly darker on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.supplier-btn {
    background-color: #F3F3F3; /* Darker green for contrast */
    color: #2980B9;
}

.supplier-btn:hover {
    background-color: #dadada; /* Slightly darker on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.step-container {
    /* margin: 40px 0; */
    width: 60%;
    padding-right: 20px;
    padding-top: 8px;
    padding-bottom: 12px;
    background-color: #f9fcff; /* Light blue background, not overwhelming */
    /* border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-title {
    font-size: 30px;
    color: #2980B9; /* Dark blue text for titles */
    text-align: left;
}

.step-body {
    font-size: 18px;
    color: #596d7c; /* Dark blue text for titles */
    text-align: left;
}

#buyer-steps, #supplier-steps {
    display: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding-top: 70px;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.fade-out {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    display: none;
}

.custom-hr {
    border: none; /* Remove default border */
    border-top: 2px solid #63717e; /* Set line color and thickness */
    width: 100%; /* Ensure it spans the full width */
}

@media (max-width: 768px) {
  body {
    padding: 0 10px;
  }

  h2 {
    font-size: 28px;
  }

  .about-content {
    padding-top: 10px;
    margin-bottom: 80px;
  }

  .choose-type {
    font-size: 22px;
  }

  .buttons-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .buyer-btn, .supplier-btn {
    width: 90%;
    font-size: 20px;
  }

  .step-container {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .step-title {
    font-size: 22px;
    text-align: center;
    width: 100%;
  }

  .step-body {
    font-size: 16px;
    text-align: center;
    width: 100%;
  }

  #buyer-steps,
  #supplier-steps {
    padding-top: 40px;
  }

  .custom-hr {
    width: 80%;
    margin: auto;
  }
}
