body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #e0e0e0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

footer {
    background: black;
    color: white;
    padding: 10px;
    min-height: 50px;
    position: relative;
    bottom: 0;
    left: 0;
}

img{
	display: block;
	margin: auto;
    min-width: 250px;
}

.top-section {
    display: flex;
    align-items: center;
    flex: 0 0 25vh;
    gap: 15%;
    background: black;
    color: white;
    padding: 40px;
    position: relative;
}

.top-section-left{
    text-align: right;
    flex: 1;
}

.top-section-right{
    display: flex;
    gap: 15%;
    font-size: 2rem;
    flex: 2;
}

.top-section img{
    width: 50%;
    border-radius: 20px;
	padding: 0.5rem;
    border: 0.4rem solid;
}

.top-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #535353;
    clip-path: polygon(0% 30%, 100% 100%, 0% 100%);
}

.content {
    display: flex;
    background: #f5f5f5;
    padding: 50px;
}

.content div:nth-child(1) {
    flex: 3;
}

.content div:nth-child(2) {
    flex: 1;
}

.maintenance-tab{
    font-size: 2.5rem;
    display: flex;
    flex-direction: column;
    text-align: start;
	padding-left: 3rem;
}

.maintenance-tab * {
    align-self: flex-start;
}

.maintenance-tab button{
    background-color: rgb(219, 219, 219);
    border-radius: 50px;
    font-size: 1.5rem;
    padding: 15px 35px;
    border: 0;
    margin-left: 2%;
	cursor:pointer;
}

.separador {
    background: #535353;
    color: white;
    padding: 50px;
    position: relative;
    flex: 0 0 30vh;
}

.separador::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #A5A5A5;
    clip-path: polygon(0% 30%, 100% 100%, 0% 100%);
}

.bottom-section {
    text-align: center;
	align-content: center;
    background: white;
    padding: 30px;
    flex: 0 0 50vh;
}

.bottom-section p{
    font-size: 1.5rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {

    .top-section{
        flex-direction: column;
        flex: 0 0 50vh;
    }

    .content div:nth-child(2){
        display: none;
    }

    .maintenance-tab{
        text-align: center;
		font-size: 1.5rem;
		padding-left: 0rem;
    }
	
	.top-section-right{
		font-size: 1.5rem;
	}
	
	img{
		display: block;
		margin: auto;
		min-width: 200px;
}
}