@charset "utf-8";
/* CSS Document */
/* 기본 */
body, html {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: 'Pretendard', sans-serif;
}

.rq-wrap {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* 메인 타이틀 */
.rq-title {
    font-size: 24px;
    font-weight: 700;
    color: #1d2c4d;
    margin-bottom: 25px;
}

/* 카드 박스 */
.rq-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

/* 서브 제목 */
.rq-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

/* 텍스트 내용 */
.rq-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.rq-info {
    margin: 20px 0;
}

/* 강조 박스 */
.rq-highlight {
    background: #f8f9fc;
    border: 1px solid #d6dae5;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
}

.rq-highlight strong {
    font-size: 20px;
    display: block;
    margin-top: 5px;
}

/* 리스트 스타일 */
.rq-list {
    margin-left: 20px;
    margin-top: 10px;
}

.rq-list li {
    margin-bottom: 7px;
}

/* 목록 버튼 */
.rq-list-wrap {
    text-align: center;
    margin-top: 15px;
}

.rq-list-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #444;
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
}

.rq-list-btn:hover {
    background: #222;
}


