/* Reset some basic elements */
body, h1, p, a {
    margin: 0;
    padding: 0;
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Basic styling */
body {
    line-height: 1.6;
    color: #222;
    background-color: #eee;
    height: 100%;
}

header {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.logo img {
    width: 150px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    padding-top: 2rem;
    padding-left: 8rem;
    padding-right: 8rem;
    text-align: center;
    margin-bottom: 100px;
}

.left {
    text-align: left;
}

.big {
    font-size: 2rem;
}

.hero {
    margin: 2rem 0;
}

.hero h1 {
    margin-bottom: 1rem;
    color: #be0000;
}

.hero h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #be0000;
    font-size: 1.1rem;
}

.hero p ul {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-bottom: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #be0000;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    gap: 10px;
    margin: 20px 0px;
}

.button-icon {
    width: 24px;
    height: auto;
}

.cta-button:hover {
    background-color: #8d0000;
}

body.transparent-background {
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.transparent-background {
    position: relative;
    z-index: 1;
}

.transparent-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/owl-background.png');
    background-size: cover;
    background-position: center top;
    opacity: 0.05;
    z-index: -1;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.external-link:link {
    color: #be0000;
}

.external-link:visited {
    color: #8d0000;
}

.external-link:hover {
    color: #be0000;
    text-decoration: underline;
}

.external-link:active {
    color: red;
}

