* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', sans-serif;
    background: #f8f9fb;
    color: #222;
}

.header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}

.back-btn {
    background: #2d6df6;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.25s ease;
}

.back-btn:hover {
    background: #1f5be0; 
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 109, 246, 0.25);
}

.back-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* 메인 */
.pricing-section .inner {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* 요금 정책 카드 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    transition: 0.3s;
    text-decoration: none; 
    color: inherit; /* 글자색 유지 */
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.price-box div {
    margin-bottom: 18px;
}

.price-box h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #2d6df6;
}

/* 하단 */
.cta-section {
    background: #2d6df6;
    color: #fff;
    text-align: center;
    padding: 60px 16px;
}

.cta-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-btn {
    background: #fff;
    color: #2d6df6;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}
.cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
    background: #f3f6ff;
}

/* 추가 섹션 */
.info-section {
    background: #ffffff;
    padding: 60px 16px;
    margin-top: 60px;
}

.info-section .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.info-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.info-img {
    width: 180px;
    position: relative;
    top: -70px;
}

.info-text {
    flex: 1;
}

.info-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.info-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 50px;
}

