@charset "utf-8";
/* CSS Document */

@charset "utf-8";

body {
    margin: 0;
    background: #f4f6fb;
    font-family: "Nanum Gothic", sans-serif;
    color: #333;
}

.wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
    color: #1a237e;
    margin-bottom: 30px;
}

.page-title span {
    display: block;
    font-size: 15px;
    color: #666;
    margin-top: 8px;
}

/* 메뉴 카드 */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.menu-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 25px 10px;
    text-decoration: none;
    border: 1px solid #dcdcdc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.menu-card .icon {
    width: 70px;
    margin-bottom: 15px;
}

.menu-card .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a237e;
}

.menu-card .desc {
    font-size: 14px;
    color: #777;
}

/* 안내 박스 */
.note-box {
    background: #e8f5e9;
    border: 2px solid #81c784;
    padding: 25px;
    border-radius: 10px;
}

.note-box h2 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #2e7d32;
    font-weight: 800;
}

.note-list {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.note-list li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
    color: #333;
}

.note-list span {
    color: #d81b60;
    font-weight: 700;
    margin-right: 5px;
}

.add-info {
    margin-top: 25px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #2e7d32;
}

.bank {
    margin-top: 15px;
    color: #1a237e;
    font-size: 17px;
    font-weight: 800;
}

.contact {
    font-size: 16px;
    color: #004d40;
    margin-top: 8px;
}

