@import url('https://fonts.googleapis.com/css2?family=Pretendard:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', sans-serif;
}

body {
    background: #f6fbff;
    color: #222;
	line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ================= LAYOUT ================= */
.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= HEADER ================= */
.header {
    height: 100px;
    background: #fff;
    border-bottom: 1px solid #e6eef7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo a {
    font-size: 22px;
    font-weight: 700;
    color: #1e88e5;
}

.nav .menu {
    display: flex;
    gap: 30px;
}

.nav .menu li {
    position: relative;
}

.nav .menu a {
    font-weight: 500;
    padding: 10px;
    display: block;
}

/* dropdown */
.sub-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    border: 1px solid #e6eef7;
    width: 160px;
    display: none;
    flex-direction: column;
}

.dropdown:hover .sub-menu {
    display: flex;
}

.sub-menu li a {
    padding: 10px;
    font-size: 16px;
}

.sub-menu li a:hover {
    background: #f0f7ff;
}

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e88e5;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.3s;
    z-index: 2000;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-btn {
    font-size: 24px;
    background: none;
    border: none;
}

/* ================= VISUAL ================= */
.visual {
    height: 200px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    display: flex;
    align-items: center;
    text-align: center;
}

.visual-inner h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

.visual-inner p {
    margin-bottom: 15px;
    color: #555;
}

.btn-main {
    display: inline-block;
    padding: 10px 20px;
    background: #1e88e5;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
}

/* ================= SECTION ================= */
.section {
    padding: 60px 0;
}

.section.bg {
    background: #fff;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* ================= INFO GRID ================= */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    background: #f6fbff;
    padding: 20px;
    border-radius: 12px;
}

/* ================= TABLE ================= */
.table-wrap {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.price-table th {
    background: #1e88e5;
    color: #fff;
    padding: 12px;
}

.price-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.price-table tr:hover {
    background: #f0f7ff;
}

/* ================= NEWS GRID ================= */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    padding: 15px;
}

.card .thumb {
    height: 120px;
    background: #d9ecff;
    border-radius: 10px;
    margin-bottom: 10px;
}

.card.no-img .thumb {
    display: none;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card p {
    font-size: 16px;
    color: #666;
}

.meta {
    font-size: 16px;
    color: #999;
    display: block;
    margin-top: 10px;
}

/* ================= REVIEW ================= */
.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
}

.review h3 {
    font-size: 18px;
}

.review p {
    font-size: 16px;
    color: #666;
}

.review-right {
    text-align: right;
}

.star {
    color: #ffb400;
}

/* ================= FOOTER ================= */
.footer {
    text-align: center;
    padding: 60px 0;
}

.partner-btn {
    display: inline-block;
    background: #1e88e5;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.footer-info {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 16px;
    color: #777;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* 모바일 드롭다운 열림 상태 */
.dropdown.open .sub-menu {
    display: flex;
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

.call-btn {
    background: #1e88e5;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    transition: 0.2s;
}

.call-btn:hover {
    background: #1565c0;
}