@charset "utf-8";
/* CSS Document */

body {
	font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header{
	background-color: #1F5C70;
    color: white;
    padding: 0px 0;
    text-align: center;
	position: sticky;
	top: 0;
	z-index: 1000;
}

footer {
	background-color: #1F5C70;
    color: white;
    padding: 10px 0;
    text-align: center;
}

footer a {
	color: white;
    padding: 10px 20px;
    text-decoration: none;
}

nav {
	display: flex;
    justify-content: center;
    background-color: #B68D40;
	margin: 5px 0;
}

nav a {
	color: white;
    padding: 10px 20px;
    text-decoration: none;
}

nav a:hover {
	background-color: #A6A6A6;
}
		
section {
	padding: 5px;
	scroll-margin-top: 200px;
}
		
.content {
	max-width: 800px;
    margin: 0 auto;
}

.separator {
	background-color: #B68D40;
    height: 4px;
    margin: 20px 0;
}
		
.service {
	margin-bottom: 20px;
}

.heroe{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0;
	margin-bottom: 0;
}

.text-container {
	width: 70%;
}

.image-container {
	width: 30%;
	margin-top: 0;
	margin-bottom: 0;
}

.image-container img {
	width: 100%;
	height: auto;
}

.text-container h1 {
	text-align: justify-all;
	font-size: 36px;
	font-weight: bold;
	color: #1F5C70;
	margin-top: 0;
}

h2 {
	color: #B68D40;
	text-align: justify;
	font-size: 18px;
	font-weight: normal;
	margin-top: 0;
}

h3 {
	margin-top: 0;
	font-weight: bold;
	color: #1F5C70;
	font-size: 18px;
	text-align: left;
}

ul {
	margin-left: 20px;
	text-align: justify;
}

.cta {
	margin-top: 5px;
	text-align: center;
}

.cta button {
	background-color: #A6A6A6;
	color: white;
	border: none;
	padding: 15px 30px;
	font-size: 18px;
	cursor: pointer;
	border-radius: 5px;
}

.cta button:hover {
	background-color: #B68D40;
}

form {
	max-width: 50%;
    margin: 0 auto;
}

form input,
form textarea {
	width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
	width: 50%;
	padding: 10px;
	background-color: #A6A6A6;
    border: 1px solid #ccc;
	cursor: pointer;
}

form button:hover {
	background-color: #B68D40;
}

.social-media {
	margin-top: 20px;
    text-align: center;
}

.social-media a {
	color: #1F5C70;
    margin: 0 20px;
    font-size: 72px;
    text-decoration: none;
}

.social-media a:hover {
	color: #B68D40;
}