body, html {
    font-family: system-ui, sans-serif;
    line-height: 1.6rem;
    scroll-behavior: smooth;
    margin: 0;
}

body a {
    color: #000;
}

body a:hover {
    text-decoration: none;
}

.hero {
    position: relative;
    height: 100dvh;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 4rem;
    margin-bottom: 0;
}

.hero-content p {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 0.8rem 0 3rem 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e65c00;
}

.wrapper {    
    min-height: 70dvh;
}

.begining {
    padding: 1.6rem 1rem 0.6rem 1rem;
}

.appar {
    background-color: #fff0e0;
    padding: 1.6rem 1rem 0.4rem 1rem;
}

.focus {
    padding: 2rem 1rem 1rem 1rem;
}

.last {
    padding: 0 1rem 1.6rem 1rem;
}

.begining h2, .appar h2, .focus h2, .last h2 {
    color: #ff6600;
    padding-bottom: 0.4rem;
    max-width: 960px;
    margin: 0 auto 0.6rem auto;
}

.begining p, .appar p, .focus p, .last p {
    padding-bottom: 0.4rem;
    max-width: 960px;
    margin: 0 auto 0.3rem auto;
}

.begining ul, .appar ul {
    padding: 0 0 15px 30px;
    max-width: 920px;
    margin: auto;
}

li {
    padding: 6px 0 8px 0;
}

.contact {
    text-align: center;
    margin-top:auto;
    padding: 40px 0 50px 0;
    background-color: #fff0e0;
}

.contact h2 {
    color: #ff6600;
    text-decoration: underline;
}

.contact a {
    color: #ff6600;
    font-weight: bold;
}

footer {
    background-color: #3b3b3b;
    color: white;
    padding: 10px;
    text-align: center;
    min-height: 6dvh;
}

footer a {
    color: #fff;
}
