.nicobay-first-time {
  background-color: #f5f5f5;
}

/* Main Title */
.nicobay-first-time__main-title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 25px;
}

.nicobay-first-time__main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--nicobay-blue);
  border-radius: 2px;
}

/* Content Container */
.nicobay-first-time__content {
  max-width: 900px;
  margin: 0 auto;
}

/* Section Styles */
.nicobay-first-time__section {
  margin-bottom: 60px;
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nicobay-first-time__section:last-of-type {
  margin-bottom: 40px;
}

/* Title Styles */
.nicobay-first-time__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.nicobay-first-time__subtitle:first-child {
  margin-top: 0;
}

/* Text Styles */
.nicobay-first-time__text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 16px;
}

.nicobay-first-time__text:last-child {
  margin-bottom: 0;
}

.nicobay-first-time__text strong {
  font-weight: 600;
  color: #333;
}

/* Subsection */
.nicobay-first-time__subsection {
  margin-bottom: 40px;
}

.nicobay-first-time__subsection:last-child {
  margin-bottom: 0;
}

/* Answer */
.nicobay-first-time__answer {
  padding-left: 0;
}

/* Types Grid */
.nicobay-first-time__types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.nicobay-first-time__type {
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid var(--nicobay-green);
}

.nicobay-first-time__type-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.nicobay-first-time__type-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Ordered List */
.nicobay-first-time__ordered-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.nicobay-first-time__ordered-list li {
  position: relative;
  color: #666;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  margin-left: 35px;
}

.nicobay-first-time__step-text {
  width: 100%;
  font-size: 16px;
}

.nicobay-first-time__step-image {
  object-fit: contain;
}

/* Link Styles */
.nicobay-first-time__link {
  color: var(--nicobay-blue);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.nicobay-first-time__link:hover {
  opacity: 0.7;
}

.nicobay-first-time__image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.nicobay-first-time__type-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nicobay-first-time__main-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .nicobay-first-time__section {
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .nicobay-first-time__title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .nicobay-first-time__text {
    font-size: 15px;
  }

  .nicobay-first-time__types {
    grid-template-columns: 1fr;
  }

  .nicobay-first-time__type {
    padding: 20px;
  }

  .nicobay-first-time__type-title {
    font-size: 16px;
  }

  .nicobay-first-time__type-text {
    font-size: 14px;
  }

  .nicobay-first-time__ordered-list li {
    margin-left: 0;
  }
}
