<style>
    body {
        font-family: 'Noto Sans KR', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    .header-gradient {
        background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    }
    .service-card {
        transition: all 0.3s ease;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    .price-tag {
        background-color: #ebf8ff;
        border-radius: 20px;
        padding: 3px 10px;
        font-weight: 600;
        color: #2b6cb0;
    }
    .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
    }
    .feature-item i {
        color: #4299e1;
        margin-top: 4px;
        margin-right: 10px;
    }
    table {
        width: 100%;
        border-collapse: collapse;
    }
    table th, table td {
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
    }
    table th {
        background-color: #edf2f7;
        font-weight: 600;
    }
    table tr:nth-child(even) {
        background-color: #f8fafc;
    }
    .tab-content {
        display: none;
    }
    .tab-content.active {
        display: block;
    }
    .highlight-box {
        border-left: 4px solid #4299e1;
        padding-left: 15px;
        background-color: #ebf8ff;
    }
    .pricing-table th {
        background-color: #f3f4f6;
    }
    .pricing-table tr:nth-child(even) {
        background-color: #f9fafb;
    }
    .success-high {
        color: #059669;
    }
    .success-medium {
        color: #0284c7;
    }
    .success-low {
        color: #d97706;
    }
    .text-primary {
        color: #072148;
    }/* 드롭다운 메뉴 스타일 */
    .dropdown-menu {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 50;
        min-width: 200px;
        background: white;
        border-radius: 0.375rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    .menu-item:hover .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        display: block;
        color: #374151;
        font-size: 0.875rem;
    }
    .dropdown-menu a:hover {
        background-color: #F3F4F6;
    }   
</style>