* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
	background: linear-gradient(135deg,#0b2342 0%,#00a6a6 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.container {
	text-align: center;
	animation: fadeIn 1s ease-in;
	max-width: 900px;
}

.logo-container {
	margin-bottom: 50px;
}

.logo {
	background: white;
	border-radius: 20px;
	padding: 40px 60px;
	display: inline-block;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.logo-text {
	font-size: 48px;
	font-weight: 600;
	letter-spacing: -1px;
}

.bridge-one {
	color: #0b2342;
}

.tech {
	color: #00a6a6;
}

h1 {
	color: white;
	font-size: 56px;
	font-weight: 600;
	margin-bottom: 20px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.subtitle {
	color: #c8f3f3;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.5px;
	margin-bottom: 50px;
}

.integrations {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.integration-icon {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 15px;
	padding: 25px 30px;
	min-width: 120px;
	transition: all 0.3s ease;
}

.integration-icon:hover {
	background: rgba(255,255,255,0.15);
	transform: translateY(-5px);
	border-color: rgba(255,255,255,0.3);
}

.integration-icon svg {
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
}

.integration-label {
	color: white;
	font-size: 14px;
	font-weight: 500;
}

.cta-button {
	display: inline-block;
	background: white;
	color: #0b2342;
	padding: 18px 45px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	margin-bottom: 60px;
	cursor: pointer;
	border: none;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.3);
	background: #c8f3f3;
}

.footer {
	color: rgba(255,255,255,0.7);
	font-size: 14px;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.uk-flag {
	width: 20px;
	height: 15px;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(11,35,66,0.9);
	backdrop-filter: blur(5px);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease-in;
}

.modal.active {
	display: flex;
}

.modal-content {
	background: white;
	border-radius: 20px;
	padding: 40px;
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	animation: slideUp 0.3s ease-out;
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 28px;
	color: #5a6c7d;
	cursor: pointer;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.modal-close:hover {
	background: #f5f7fa;
	color: #0b2342;
}

.modal-header {
	margin-bottom: 25px;
}

.modal-header h2 {
	color: #0b2342;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
}

.modal-header p {
	color: #5a6c7d;
	font-size: 16px;
}

.policy-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;
	background: white;
	min-height: 100vh;
}

.policy-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f5f7fa;
}

.policy-header h1 {
	color: #0b2342;
	font-size: 42px;
	margin-bottom: 10px;
	text-shadow: none;
}

.policy-header .logo-link {
	display: inline-block;
	margin-bottom: 20px;
	text-decoration: none;
}

.policy-header .logo-text {
	font-size: 32px;
	font-weight: 600;
	font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

.policy-content {
	color: #1a1a1a;
	line-height: 1.8;
}

.policy-content h2 {
	color: #0b2342;
	font-size: 24px;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 15px;
}

.policy-content h3 {
	color: #00a6a6;
	font-size: 18px;
	font-weight: 600;
	margin-top: 25px;
	margin-bottom: 10px;
}

.policy-content p {
	margin-bottom: 15px;
}

.policy-content ul {
	margin-left: 25px;
	margin-bottom: 15px;
}

.policy-content li {
	margin-bottom: 8px;
}

.policy-content a {
	color: #00a6a6;
	text-decoration: none;
	border-bottom: 1px solid #c8f3f3;
}

.policy-content a:hover {
	color: #0b2342;
	border-bottom-color: #0b2342;
}

.last-updated {
	color: #5a6c7d;
	font-size: 14px;
	font-style: italic;
	margin-top: 10px;
}

.contact-box {
	background: #f5f7fa;
	padding: 20px;
	border-radius: 10px;
	margin-top: 30px;
	border-left: 4px solid #00a6a6;
}

.back-link {
	display: inline-block;
	margin-top: 40px;
	color: #00a6a6;
	text-decoration: none;
	font-weight: 500;
}

.back-link:hover {
	color: #0b2342;
}

.privacy-link {
    text-align: center;
}

.privacy-link a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link a:hover {
    color: #C8F3F3;
    text-decoration: underline;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 40px;
	}

	.subtitle {
		font-size: 18px;
		margin-bottom: 40px;
	}

	.logo {
		padding: 30px 40px;
	}

	.logo-text {
		font-size: 36px;
	}

	.integrations {
		gap: 25px;
	}

	.integration-icon {
		padding: 20px 25px;
		min-width: 100px;
	}

	.integration-icon svg {
		width: 40px;
		height: 40px;
	}

	.cta-button {
		padding: 16px 35px;
		font-size: 16px;
	}

	.modal-content {
		padding: 30px 20px;
	}

	.modal-header h2 {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 32px;
	}

	.logo {
		padding: 25px 35px;
	}

	.logo-text {
		font-size: 28px;
	}

	.integrations {
		gap: 20px;
	}

	.integration-icon {
		padding: 15px 20px;
		min-width: 90px;
	}
}

@media (max-width: 768px) {
	.policy-header h1 {
		font-size: 32px;
	}

	.policy-header .logo-text {
		font-size: 24px;
	}
}