:root{
    --header-height: 80px;
    --header-background-color: transparent;
    --background-color: #FEF6EA;
    --secondary-background-color: #FFF1DD;
    --header-text-color: #fff;
    --header-link-color: #D1A23E;
    --button-hover-color: #B8941A;
    --h2-text-color: #000000;
    --h2-font-size: 4rem;
}

body{
    font-family: Arial, sans-serif;
    color: #333;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    padding-top: var(--header-height);
    min-height: 100vh;
}

section {
    /* height: 100vh; */
    position: relative;
    margin: 0;
}

section:first-of-type {
    background-image: url('/assets/img/landings_page.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: calc(-1 * var(--header-height));
    padding-top: var(--header-height);
}

section:first-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.116);
    z-index: 1;
}

.landing-content {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-content img {
    display: none;
}

.landing-content p {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.arrow-down {
    color: #D1A23E;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.teams-section {
    padding: 80px 20px;
    background-color: var(--background-color);
    height: auto;
    min-height: auto;
    display: flex;
    align-items: center;
}

.de-teams {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.de-teams h2{
    text-align: left;
    font-size: var(--h2-font-size);
    margin-bottom: 30px;
    color: var(--h2-text-color);
}

.de-teams h2::after {
    content: '';
    display: block;
    width: 500px;
    height: 3px;
    background-color: var(--header-link-color);
    margin-top: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}