* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	min-width: 300px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(45deg, #2A6F97 0%, #012A4A 100%);
}

.main {
	width: 100%;
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 20px;
	display: flex;
	overflow: hidden;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.left-section {
	padding: 40px;
	display: flex;
	flex: 0 0 50%;
	flex-direction: column;
	justify-content: center;
}

.title {
	margin-bottom: 10px;
	font-size: 2.6rem;
	font-weight: bold;
	color: #012A4A;
}

.subtitle {
	margin-bottom: 10px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #2A6F97;
	opacity: 1;
	transform: translateX(0);
	transition: all 0.5s ease;
}

.subtitle.fade-out {
	opacity: 0;
	transform: translateX(10px);
}

.subtitle.fade-in {
	opacity: 1;
	transform: translateX(0);
}

.description {
	max-width: 500px;
	margin-bottom: 20px;
	font-size: 1.2rem;
	color: #012A4A;
}

.button-section {
	display: flex;
	align-items: center;
	gap: 20px;
}

.button {
	padding: 20px;
	display: inline-block;
	position: relative;
	overflow: hidden;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
	border: none;
	border-radius: 50px;
	transition: all 0.5s ease;
	cursor: pointer;
}

.button-primary,
.button-primary:focus,
.button-primary:active {
	background: #01497C;
	color: #FFFFFF;
	border: 2px solid #01497C;
}

   .button-primary:hover {
	background: transparent;
	color: #01497C;
   }

.button-secondary,
.button-secondary:focus,
.button-secondary:active {
	background: transparent;
	color: #2A6F97;
	border: 2px solid #2A6F97;
}

.button-secondary:hover {
	background: #2A6F97;
	color: #FFFFFF;
}
	
.right-section {
	display: flex;
	flex: 0 0 50%;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(45deg, #F8F9FA 0%, #E9ECEF 100%);
}

.image-section {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image {
	width: 100%;
	min-width: 500px;
	height: 100%;
	object-fit: contain;
	opacity: 1;
	transform: scale(1);
	transition: all 0.5s ease;
}

.image.fade-out {
	opacity: 0;
	transform: scale(0.95);
}

.image.fade-in {
	opacity: 1;
	transform: scale(1);
}

.footer {
	width: 100%;
	margin-top: auto;
	padding: 20px;
	text-align: center;
	font-size: 1rem;
	color: #FFFFFF;
}

.footer a,
.footer a:focus,
.footer a:active {
	font-size: 1rem;
	text-decoration: none;
	color: #FFFFFF;
	transition: all 0.5s ease;
	opacity: 1;
}

.footer a:hover {
	opacity: 0.8;
}

@media (max-width: 768px) {
	.container {
		width: 95%;
		flex-direction: column;
	}
	
	.left-section {
		text-align: center;
		align-items: center;
	}
	
	.title {
		font-size: 2rem;
	}
	
	.subtitle {
		font-size: 1.5rem;
		opacity: 1;
		transform: translateY(0);
		transition: all 0.5s ease;
	}
	
	.subtitle.fade-out {
		opacity: 0;
		transform: translateY(10px);
	}
	
	.subtitle.fade-in {
		opacity: 1;
		transform: translateY(0);
	}
	
	.description {
		font-size: 1.1rem;
	}
	
	.button-section {
		width: 100%;
		max-width: 300px;
		flex-direction: column;
	}
	
	.button {
		width: 100%;
	}
	
	.image {
		max-width: 400px;
	}
}