@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  background-color: #ffffff;
}

/* Main Container */
.cls-user-guide {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
}

/* Title Section (0. Title) */
.section-title {
  background-color: #ffffff !important;
  display: flex;
  flex-direction: column;
  min-height: 96px;
  align-items: center;
  overflow: visible;
  padding: 20px 188px;
  width: 100%;
  flex-shrink: 0;
}

.title-container {
  width: 442px;
  max-width: 100%;
  position: relative;
  flex-shrink: 0;
}

.title-image {
  position: relative;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
  display: block;
  pointer-events: none;
}

/* Content Sections */
.section-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  overflow: visible;
  padding: 50px 178px;
  width: 100%;
  flex-shrink: 0;
}

.section-bg-light {
  background-color: #edfcff;
  padding-top: 50px;
  padding-bottom: 25px;
}

/* Section Number (ol) */
.section-number {
  display: block;
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  list-style-type: decimal;
  font-style: normal;
  position: relative;
  flex-shrink: 0;
  font-size: 25px;
  color: #000000;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.section-number .list-inside {
  list-style-position: inside;
  margin-left: 0;
  text-align: center;
}

.section-number span {
  line-height: normal;
}

/* Image Container */
.image-container {
  position: relative;
  border-radius: 10px;
  flex-shrink: 0;
  width: 100%;
  max-width: 520px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  padding: 4px;
}

.image-border {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-image {
  position: relative;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  width: 100%;
  display: block;
  pointer-events: none;
}

/* Section Description (ul) */
.section-description {
  display: block;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  font-style: normal;
  position: relative;
  flex-shrink: 0;
  font-size: 18px;
  color: #000000;
  width: auto;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  list-style-type: disc;
  list-style-position: inside;
  box-sizing: border-box;
  align-self: center;
}

.section-description li {
  margin-left: 27px;
  margin-bottom: 0;
  line-height: normal;
}

.section-description li:not(:last-child) {
  margin-bottom: 8px;
}

/* Text Styles */
.text-bold {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-style: normal;
}

.text-blue {
  color: #3700ff;
}

.text-red {
  color: #3700ff;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.text-gray {
  color: #848484;
  font-size: 15px;
}

/* Arrow Container (Section 4) */
.arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.arrow-wrapper {
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  place-items: center;
  position: relative;
  flex-shrink: 0;
  margin: 0 auto;
}

.arrow-image-container {
  grid-area: 1 / 1;
  margin-left: 0;
  margin-top: 0;
  position: relative;
  width: 466px;
  max-width: 100%;
}

.arrow-image {
  position: relative;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
  display: block;
  pointer-events: none;
}

.arrow-icon-container {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 456.84px;
  margin-top: -10px;
  position: relative;
  width: auto;
  height: auto;
}

.arrow-icon-container > div {
  flex: none;
  transform: rotate(45deg);
}

.arrow-icon-container > div > div {
  position: relative;
  width: 48px;
  height: 48px;
}

.arrow-icon {
  display: block;
  max-width: 48px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .section-content {
    padding: 50px 50px;
  }
  
  .section-title {
    padding: 20px 50px;
  }
}

@media (max-width: 768px) {
  .section-content {
    padding: 30px 20px;
  }
  
  .section-title {
    padding: 15px 20px;
    min-height: auto;
  }
  
  .title-container {
    width: 100%;
    max-width: 442px;
  }
  
  .image-container {
    width: 100%;
    max-width: 520px;
  }
  
  .section-number {
    font-size: 20px;
  }
  
  .section-description {
    font-size: 16px;
    max-width: 600px;
  }
  
  .arrow-image-container {
    width: 100%;
    max-width: 466px;
  }
  
  .arrow-icon-container {
    margin-left: calc(100% - 67.882px);
  }
}

/* Notice Section */
.notice-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 178px;
  background-color: #ffffff;
}

.notice-divider {
  width: 100%;
  max-width: 600px;
  border: none;
  border-top: 2px solid #000000;
  margin: 0 0 30px 0;
}

.notice-content {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.notice-text {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 15px 0;
  color: #000000;
}

.notice-contact {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin: 20px 0 0 0;
  color: #000000;
}

.notice-contact a {
  text-decoration: none;
}

.notice-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .notice-section {
    padding: 30px 20px;
  }
  
  .notice-text,
  .notice-contact {
    font-size: 16px;
  }
}


