@charset "utf-8";
/* CSS Document */

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
}

.wrapper {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	padding: 15px;
}

.logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	padding: 10px;
}

.logo img {
	max-width: 100%;
	height: auto;
	max-height: 150px;
	width: auto;
}

.content {
	padding-top: 20px;
}

h1, h2 {
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 20px 0;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 20px 0 30px 0;
}

.email, .phone, .address {
	display: block;
	font-size: 15px;
	line-height: 1.6;
}

.map-container {
	width: 100%;
	margin-top: 30px;
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}

.map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Desktop: 768px and up */
@media (min-width: 768px) {
	.wrapper {
		padding: 30px;
	}
	
	.logo img {
		max-height: 180px;
	}
	
	h1, h2 {
		font-size: 28px;
	}
	
	.email, .phone, .address {
		font-size: 16px;
	}
}

/* Mobile: smaller than 768px */
@media (max-width: 767px) {
	.wrapper {
		padding: 10px;
	}
	
	.logo img {
		max-height: 120px;
	}
	
	h1, h2 {
		font-size: 20px;
	}
	
	.email, .phone, .address {
		font-size: 14px;
	}
}