@charset "utf-8";


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans KR", Arial, sans-serif;
}


/* 번호 목록 들여쓰기 제거 */
ol {
    margin: 0;
    padding: 0;
}

ol li {
    padding-left: 0;
    list-style-position: inside;
    line-height: 1.7;
    font-size: 19px;
    letter-spacing: -0.5px;
}

/* 배경 */
.page-bg {
    min-height: 100vh;
    background: repeating-linear-gradient(-45deg,
            #8f2249 0px,
            #8f2249 70px,
            #913e5c 70px,
            #913e5c 82px);
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}


/* 중앙 카드 */
.card {
    background: #fafafa;
    max-width: 900px;
    width: 100%;
    padding: 60px 70px;
}

/* 타이틀 */
.title h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 800;
}

.title span {
    color: #9b2743;
}

/* 섹션 */
.content h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

/* 질문 박스 */
.question {
    background: #abfe26;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    margin: 28px 0 14px;
    font-size: 20px;
}

.q_style {
    font-family: helvetica;
    font-size: 24px;
}

/* 본문 */
p {
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 19px;
    letter-spacing: -0.5px;
}


/* 강조 텍스트 */
.highlight {
    background: #f2fb86;
    padding: 2px 4px;
}

/* 도트 리스트 */
.dot-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    font-size: 19px;

}

.dot-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    padding-left: 25px; 
}

.dot-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #8f2249;
    font-size: 19px;
}


/* CTA 링크 영역 */
.cta {
    margin-top: 32px;
    text-align: left;
}

/* 링크 버튼 스타일 */
.cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.2px;

    color: #8f2249;
    text-decoration: none;

    border: 1.5px solid #8f2249;
    border-radius: 999px;

    transition: all 0.25s ease;
}

/* 화살표 아이콘 효과 */
.cta a::after {
    content: "→";
    font-size: 16px;
    transition: transform 0.25s ease;
}

/* Hover 효과 */
.cta a:hover {
    background-color: #8f2249;
    color: #ffffff;
}

.cta a:hover::after {
    transform: translateX(4px);
}