html {
    height: 100%;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    font-family: Arial, sans-serif;
    position: relative;
    min-height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
}
.content {
    flex: 1;
    padding-bottom: 80px; /* Equal to footer height */
}
.showcase img {
    max-width: 100%; /* Asegura que la imagen no sea más ancha que su contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    max-height: 600px;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}
.showcase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 600px;
    padding: 0 50px;
    background: url('path_to_your_background_image.jpg') no-repeat right center / cover;
}
.showcase .showcase-text {
    max-width: 50%;
    margin-right: 20px;
}
.showcase h1 {
    font-size: 55px;
    margin-bottom: 10px;
}
.showcase p {
    font-size: 20px;
}
.features {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.features section {
    width: 33.3333%;
    padding: 0 25px 0 35px;
    box-sizing: border-box;
}
.features h2 {
    font-size: 20px;
    color: #333;
}
.features p {
    font-size: 16px;
    color: #666;
}