*
{
	margin:0;
	padding:0;
	box-sizing:border-box;
}
body
{
	background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color:#2c3e50;
	min-height:100vh;
}
.link-style
{
	color:#3498db;
	text-decoration:none;
	font-weight:600;
	cursor:pointer;
	vertical-align:top;
	transition:color 0.3s ease;
}
.link-style:hover
{
	color:#2980b9;
}
.menu-wrapper,
.menu
{
	position:relative;
	display:inline-block;
	font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size:14px;
	cursor:pointer;
	vertical-align:top;
	white-space: nowrap;
}
.menu-wrapper:hover > .submenu,
.menu:hover > .submenu
{
	visibility: visible !important;
	opacity: 1 !important;
	transition: opacity 0.3s ease;
}
.submenu
{
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	background: #ffffff;
	border: none;
	padding: 8px 0;
	z-index: 9999 !important;
	min-width: 220px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	white-space: nowrap;
	overflow: hidden;
}
.submenu:hover
{
	visibility: visible;
	opacity: 1;
}
.submenu::before
{
	content: '';
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	height: 10px;
	background: transparent;
}
.submenu a { display: block; padding: 12px 20px; text-decoration: none; color: #2c3e50; font-size: 14px; transition: all 0.3s ease; white-space: nowrap; box-sizing: border-box; width: 100%; }
.submenu a:hover
{
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	padding-left: 25px;
	white-space: nowrap;
}
.submenu-item
{
	position:relative;
	display:block;
}
.submenu-item:hover > .nested-submenu
{
	visibility: visible;
	opacity: 1;
}
.nested-submenu
{
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: 100%;
	top: 0;
	background: #ffffff;
	border: none;
	padding: 8px 0;
	z-index: 10000 !important;
	min-width: 220px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}
.nested-submenu:hover
{
	visibility: visible;
	opacity: 1;
}
.nested-submenu::before
{
	content: '';
	position: absolute;
	right: 100%;
	top: 0;
	bottom: 0;
	width: 10px;
	background: transparent;
}
table
{
	border-collapse:collapse;
}
table td
{
	position:relative;
	overflow:visible !important;
}
.submenu.no-link
{
	position:static;
	display:block;
	background:none;
	border:none;
	padding:0;
	min-width:auto;
}
.banking-container
{
	max-width:1400px;
	margin:0 auto;
	padding:20px;
}
.language-toggle
{
	background:rgba(255, 255, 255, 0.95);
	padding:20px;
	margin-bottom:30px;
	border-radius:15px;
	text-align:center;
	box-shadow:0 10px 30px rgba(0, 0, 0, 0.2);
	backdrop-filter:blur(10px);
}
.toggle-btn
{
	background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color:white;
	border:none;
	padding:12px 30px;
	margin:0 10px;
	border-radius:25px;
	cursor:pointer;
	font-weight:600;
	font-size:15px;
	transition:all 0.3s ease;
	box-shadow:0 4px 15px rgba(102, 126, 234, 0.4);
}
.toggle-btn:hover
{
	transform:translateY(-2px);
	box-shadow:0 6px 20px rgba(102, 126, 234, 0.6);
}
.toggle-btn.active
{
	background:linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
	box-shadow:0 6px 20px rgba(56, 239, 125, 0.6);
}
.content-section
{
	background:rgba(255, 255, 255, 0.95);
	padding:40px;
	border-radius:20px;
	box-shadow:0 20px 60px rgba(0, 0, 0, 0.3);
	backdrop-filter:blur(10px);
	transition:opacity 0.3s ease;
}
h1
{
	color:#2c3e50;
	font-size:28px;
	font-weight:700;
	margin-bottom:30px;
	padding-bottom:15px;
	border-bottom:3px solid transparent;
	background:linear-gradient(90deg, #667eea, #764ba2) left bottom no-repeat;
	background-size:100% 3px;
}
.tip
{
	margin:20px 0;
	padding:0;
	background:#ffffff;
	border-radius:15px;
	overflow:hidden;
	box-shadow:0 5px 15px rgba(0, 0, 0, 0.08);
	transition:all 0.3s ease;
	border-left:5px solid transparent;
}
.tip:hover
{
	transform:translateX(5px);
	box-shadow:0 8px 25px rgba(0, 0, 0, 0.15);
	border-left-color:#667eea;
}
.tip-title
{
	background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color:#ffffff;
	font-weight:600;
	font-size:18px;
	padding:18px 25px;
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:space-between;
	transition:all 0.3s ease;
}
.tip-title::after
{
	content:'▼';
	font-size:12px;
	transition:transform 0.3s ease;
}
.tip-title:hover
{
	background:linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
.tip.expanded .tip-title::after
{
	transform:rotate(180deg);
}
.bilingual-text
{
	padding:25px;
	line-height:1.8;
	display:none;
}
.tip.expanded .bilingual-text
{
	display:block;
	animation:slideDown 0.3s ease;
}
@keyframes slideDown
{
	from
	{
		opacity:0;
		transform:translateY(-10px);
	}
	to
	{
		opacity:1;
		transform:translateY(0);
	}
}
@media (max-width:768px)
{
	.banking-container
	{
		padding:10px;
	}
	.content-section
	{
		padding:20px;
	}
	.submenu
	{
		min-width:180px;
	}
	.nested-submenu
	{
		min-width:180px;
	}
}
html
{
	scroll-behavior:smooth;
}
.menu-wrapper:hover > .submenu
{
	top:auto;
	bottom:100%;
}

#nm_menu ul ul li a
{
	display: block;
	padding: 10px 15px;
	color: cyan;
	text-decoration: none;
	white-space: nowrap;
}

#nm_menu ul ul li a:hover
{
	background-color: #333;
	color: #FF6600;
}


#nm_menu
{
	position: relative;
	z-index: 10000;
}

#nm_menu ul
{
	position: relative;
	z-index: 10001;
}

#nm_menu ul ul
{
	position: absolute;
	z-index: 10002 !important;
}

#nm_menu ul ul li a
{
	display: block;
	padding: 10px 15px;
	color: cyan;
	text-decoration: none;
	white-space: nowrap;
}

#nm_menu ul ul li a:hover
{
	background-color: #333;
	color: #FF6600;
}