
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
	text-align: center;
	margin-bottom: 40px;
}

h1 {
	font-size: 3rem;
	margin-bottom: 10px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	background: linear-gradient(to right, #74b9ff, #0984e3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.subtitle {
	font-size: 1.2rem;
	opacity: 0.8;
	margin-bottom: 30px;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 25px;
	margin-bottom: 40px;
}

.contact-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #74b9ff, #0984e3);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	font-size: 1.5rem;
}

.card-title {
	font-size: 1.0rem;
	font-weight: 600;
}


.card-subtitle {
	font-size: 0.9rem;
	opacity: 0.7;
	margin-top: 3px;
}

.contact-info {
	margin-top: 15px;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: 1rem;
}

.contact-item i {
	width: 25px;
	margin-right: 10px;
	color: #74b9ff;
}

.map-container {
	margin-top: 40px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	height: 400px;
}

.map-placeholder {
	background: linear-gradient(135deg, #1e3799, #4a69bd);
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	text-align: center;
	padding: 20px;
}

footer {
	text-align: center;
	margin-top: 60px;
	padding: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	opacity: 0.7;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.2rem;
	}
	
	.contact-grid {
		grid-template-columns: 1fr;
	}
	
	.map-container {
		height: 300px;
	}
}
