* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

nav {
    display: flex;
    height: 80px;
    background: #FCEBEB;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    flex-wrap: wrap;
}

.hero-logo {
    margin-top: 10px;
    width: 170px;
    height: 75px;
}

nav a {
    background-color: #E95273;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    margin-right: 200px;
    font-weight: bold;
}

nav .login-link {
    background-color: transparent;
    padding: 0;
    color: #8B9DC3;
    font-weight: normal;
}

nav .login-link:hover {
    text-decoration: underline;
    color: #8B9DC3;
}

.hero {
    background: #FCEBEB;
}

.hero-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    height: 95vh;
    padding: 3rem 5%;
}

.colum-left {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #8B9DC3;
    padding: 0rem 2rem;
}

.colum-left h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
}

.colum-left p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.5;
}

.colum-right {
    display: flex;
    justify-items: center;
    align-items: center;
    padding: 0rem 2rem;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .colum-left h1 {
        font-size: 2rem;
    }

    .colum-left p {
        font-size: 1rem;
    }

    .hero-image {
        width: 100%;
    }
}

.footer {
    background: #FCEBEB;
    padding: 2rem;
    text-align: left;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: 500px;
    gap: 4rem;
}

.contact-info, .adress-info {
    text-align: left;
}
