/* Accounts Section */
.accounts-section {
	background-color: #ffffff;
	padding: 80px 0;
}

.accounts-title {
	font-size: 40px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 40px 0;
	line-height: 1.2;
}

.accounts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 48px;
}

.accounts-grid[data-expanded="false"] .account-item:nth-child(n+9) {
	display: none;
}

.account-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background-color: #f8f9fa;
	border: 1px solid #f8f9fa;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.3s ease;
}

.account-item:hover {
	border: 1px solid #0070c1;
}

.account-icon {
	flex-shrink: 0;
	color: #0070c1;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.account-text {
	font-size: 14px;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1.4;
}

.accounts-action {
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn-view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 32px;
	background-color: #ffffff;
	color: #0070c1;
	border: 2px solid #0070c1;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-view-all:hover {
	background-color: #0070c1;
	color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
	.accounts-section {
		padding: 60px 0;
	}

	.accounts-title {
		font-size: 36px;
	}

	.accounts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-bottom: 40px;
	}
}

@media (max-width: 768px) {
	.accounts-section {
		padding: 40px 0;
	}

	.accounts-title {
		font-size: 32px;
		margin-bottom: 32px;
	}

	.accounts-grid {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 32px;
	}

	.account-item {
		padding: 14px 16px;
	}

	.account-text {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.accounts-section {
		padding: 32px 0;
	}

	.accounts-title {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.accounts-grid {
		margin-bottom: 24px;
	}

	.account-item {
		padding: 12px 14px;
		gap: 10px;
	}

	.account-icon {
		width: 20px;
		height: 20px;
	}

	.account-text {
		font-size: 12px;
	}

	.btn-view-all {
		padding: 10px 24px;
		font-size: 13px;
	}
}


