



.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #1e1e1e;
            color: #fff;
            padding: 20px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
            transform: translateY(100%);
            opacity: 0;
        }
        .cookie-banner.show {
            transform: translateY(0);
            opacity: 1;
        }
        .cookie-banner p {
            margin: 0;
            margin-bottom: 15px;
            font-size: 16px;
            text-align: center;
        }
        .cookie-banner button {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .cookie-banner button:hover {
            background-color: #0056b3;
        }
.hero {
    background-size: cover;
    background-position: center center;
}
body {
	margin: 0px;
	font-size: 16px;
	line-height: 1.5;
}
@font-face {
    font-family: "Font Awesome 6 Free";
    font-display: swap;
}
@font-face {
    font-family: "Font Awesome 6 Brands";
    font-display: swap;
}
@media (max-width: 768px) {
    .btn, a.nav-link, .navbar-toggler {
        min-height: 48px;
        min-width: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
