 /* Header 및 네비게이션 전용 스타일 */
 header {
   background-color: #fff;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   position: fixed;
   width: 100%;
   top: 0;
   z-index: 1000;
 }

 nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 0;
 }

 .logo {
   font-size: 24px;
   font-weight: bold;
   color: #0d6efd;
   margin-right: auto;
 }

 


 body {
   background-color: #f8f9fa;
   padding-top: 30px;
   padding-bottom: 50px;
 }

 .pricing-header {
   text-align: center;
   margin-bottom: 40px;
 }

 .pricing-card {
   border-radius: 10px;
   box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
   margin-bottom: 30px;
   transition: transform 0.3s;
 }

 .pricing-card:hover {
   transform: translateY(-5px);
 }

 .card-header {
   padding: 20px;
   text-align: center;
   font-weight: 600;
 }

 .free-header {
   color: #333;
 }

 .premium-header {
   background-color: #0d6efd;
   color: white;
   border-radius: 10px 10px 0 0;
 }

 .text-center {
   border-radius: 10px !important;
 }

 .consulting-header {
   background-color: #198754;
   color: white;
 }

 .feature-list {
   list-style: none;
   padding: 0;
 }

 .feature-list li {
   padding: 12px 20px;
   border-bottom: 1px solid #eee;
 }

 .feature-list li:last-child {
   border-bottom: none;
 }

 .price-tag {
   font-size: 1.8rem;
   font-weight: 700;
   margin: 20px 0;
 }

 .free-price {
   color: #333;
 }

 .premium-price {
   color: #0d6efd;
 }

 .consulting-price {
   color: #198754;
 }

 .badge-popular {
   position: absolute;
   top: -10px;
   right: 20px;
   background-color: #ffc107;
   color: #333;
   padding: 5px 15px;
   border-radius: 20px;
   font-weight: 600;
 }

 .btn-free {
   background-color: #6c757d;
   color: white;
 }

 .btn-premium {
   background-color: #0d6efd;
   color: white;
 }

 .btn-consulting {
   background-color: #198754;
   color: white;
 }

 .feature-icon {
   margin-right: 8px;
   color: #0d6efd;
 }

 .container .pricing-header {
   margin-top: 150px
 }