<style>
        @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');
        body {
            font-family: 'Noto Sans KR', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .gradient-bg {
            background: linear-gradient(90deg, #54595f 0%, #323232 100%);
        }
        .card {
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        .highlight {
            background: rgba(79, 70, 229, 0.1);
            border-left: 4px solid #114ba4;
        }
        .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>