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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    position: relative;
    font-size: 16px; 
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.png'); 
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.navbar {
    width: 100%;
    height: 4em;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5em;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo img {
    max-width: 8em; 
    height: auto;
}
.logo a{display: block;}

.nav-buttons button {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 0.5em;
    margin-left: 0em;
    cursor: pointer;
    border-radius: 0.3125em;
    font-size: 1em;
}

.nav-buttons button:hover {
    background-color: #ff4500;
}

.content-wrapper {
    margin-top: 6em; 
    width: 90%;
    margin-left: auto;
    margin-right: auto;
	padding-bottom: 6em;
}

.content {
    background-color: rgba(255, 255, 255, 0.7); 
    padding: 1.25em;
    border-radius: 0.625em;
}
.content h1{margin-bottom: 1em;font-size: 1.5em;}
.content p{
	margin: 1.5em 0;
}

.consult-btn {
    position: fixed;
    right: 1.25em;
    bottom: 2.5em;
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 0.9375em 1.25em;
    border-radius: 0.5em;
    font-size: 1em;
    cursor: pointer;
}

.consult-btn:hover {
    background-color: #ff4500;
}
