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

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

a {
	text-decoration: none;
	color: inherit;
}

/* Header styles */
header {
	padding: 20px 0;
	background-color: #fff;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo h1 {
	font-size: 20px;
	font-weight: bold;
	color: #0099cc;
	margin-bottom: 5px;
}

.logo h2 {
	font-size: 16px;
	font-weight: normal;
	color: #0099cc;
}

.contact-info {
	display: flex;
	align-items: center;
	gap: 20px;
}

.email-icon {
	color: #0099cc;
	font-size: 24px;
}

.language {
	all: unset;
	color: #0099cc;
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
}

.phone {
	color: #0099cc;
	font-weight: bold;
	font-size: 18px;
}

/* Hero section and slider */
.hero {
	position: relative;
	height: 70vh;
	overflow: hidden;
}

.slider {
	width: 100%;
	height: 100%;
	position: relative;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.slide.active {
	opacity: 1;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	width: 100%;
	padding: 0 20px;
}

.slide-content h2 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
	font-size: 24px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.dot.active {
	background-color: #0099cc;
}

/* Services section */
.services {
	padding: 60px 0;
	background-color: #fff;
}

.services .container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.service-item {
	padding: 20px 0;
}

.service-item h3 {
	color: #0099cc;
	margin-bottom: 15px;
	font-size: 18px;
}

.service-item p {
	color: #333;
	font-size: 14px;
}

/* Footer styles */
footer {
	padding: 20px 0;
	background-color: #fff;
	border-top: 1px solid #eee;
}

.footer-info {
	display: flex;
	justify-content: flex-start;
	gap: 30px;
}

.footer-info p {
	font-size: 14px;
	color: #333;
}

.footer-info a,
.footer-info h3 {
	color: #0099cc;
}

/* Responsive styles */
@media (max-width: 768px) {
	header .container {
		flex-direction: column;
		gap: 15px;
	}

	.contact-info {
		width: 100%;
		justify-content: space-between;
	}

	.slide-content h2 {
		font-size: 28px;
	}

	.slide-content p {
		font-size: 18px;
	}

	.services .container {
		grid-template-columns: 1fr;
	}

	.footer-info {
		flex-direction: column;
		gap: 10px;
	}
}
