
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
}

/* Header */
.header {
	background: #fff;
	padding: 1rem 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	position: relative;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
}

.logo {
	flex: 0 0 auto;
}

.logo img {
	height: 60px;
	width: auto;
}

.site-title {
	position: absolute;
	left: 50%;
	/*transform: translateX(-50%);*/
	color: #0047AB;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
}

/* Main Content */
.main-content {
	max-width: 1200px;
	margin: 3rem auto;
	padding: 0 2rem;
}

/* Carousel Section */
.carousel-section {
	margin-bottom: 4rem;
}

.carousel-container {
	position: relative;
	width: 100%;
	margin: 0 auto 2rem;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-slide {
	display: none;
	width: 100%;
}

.carousel-slide.active {
	display: block;
}

.carousel-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 1rem;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: background 0.3s ease;
}

.indicator.active {
	background: #0047AB;
}

/* Service Description */
.service-description {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 3rem 2rem;
	border-radius: 15px;
	margin: 3rem 0;
	border-left: 5px solid #D4AF37;
}

.service-description h2 {
	color: #0047AB;
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.service-description p {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	text-align: justify;
	line-height: 1.8;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.feature-item {
	background: #fff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	border-top: 3px solid #D4AF37;
}

.feature-item h3 {
	color: #0047AB;
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

/* Login Section */
.login-section {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 3rem;
	align-items: flex-start;
	margin: 4rem 0;
	padding: 2rem;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.system-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.login-box {
	background: linear-gradient(135deg, #0047AB 0%, #1a5bc4 100%);
	padding: 2rem;
	border-radius: 15px;
	color: white;
	box-shadow: 0 4px 15px rgba(0,71,171,0.3);
}

.login-box h3 {
	margin-bottom: 1.5rem;
	text-align: center;
	font-size: 1.4rem;
	color: #D4AF37;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.form-group input {
	width: 100%;
	padding: 0.8rem;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
}

.login-btn {
	width: 100%;
	background: #D4AF37;
	color: #0047AB;
	padding: 0.8rem;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease;
}

.login-btn:hover {
	background: #c19b26;
}

.platform-link {
	text-align: center;
	margin-top: 1rem;
}

.platform-link a {
	color: #D4AF37;
	text-decoration: none;
	font-weight: bold;
}

.platform-link a:hover {
	text-decoration: underline;
}

/* Footer */
.footer {
	background: #0047AB;
	color: white;
	padding: 3rem 0 1rem;
	margin-top: 4rem;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	color: #D4AF37;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.footer-section p, .footer-section li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.footer-section ul {
	list-style: none;
}

.footer-section a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: #D4AF37;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #1a5bc4;
	font-size: 0.9rem;
}

.footer-bottom  a {
	color: white;
	text-decoration: none;
}
/* Responsive Design */
@media (max-width: 768px) {
	.header-container {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.site-title {
		position: static;
		transform: none;
		font-size: 2rem;
	}
	
	.logo img {
		height: 50px;
	}
	
	.main-content {
		padding: 0 1rem;
	}
	
	.carousel-slide img {
		height: 250px;
	}
	
	.service-description {
		padding: 2rem 1rem;
	}
	
	.service-description h2 {
		font-size: 1.8rem;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.login-section {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.site-title {
		font-size: 1.5rem;
	}
	
	.carousel-slide img {
		height: 200px;
	}
	
	.service-description h2 {
		font-size: 1.5rem;
	}
}

/* Picture element support */
picture img {
	width: 100%;
	height: auto;
}

