body {
    background-color: #121212;
    color: #eeeeee;
    font-family: 'Arial', sans-serif;
}

.navbar {
    background-color: #1f1f1f;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-item {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1rem;
}

.navbar-item:hover {
    background-color: #333333;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.hero {
    padding: 3rem 1.5rem;
    background-color: #1c1c1c;
}

.hero-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.columns {
    display: flex;
    align-items: center;
}

.column {
    flex: 1;
    padding: 1rem;
}

.full-height-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.section {
    padding: 3rem 1.5rem;
    background-color: #1c1c1c;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: #282828;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: #1abc9c;
    margin-bottom: 1rem;
}

.card-content p {
    margin-bottom: 1.5rem;
}

.button {
    background: linear-gradient(145deg, #1abc9c, #16a085);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background: linear-gradient(145deg, #16a085, #1abc9c);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.footer {
    background-color: #1f1f1f;
    color: #ffffff;
    padding: 2rem 1.5rem;
    text-align: center;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 33, 33, 0.95);
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    display: block;
}

.cookie-consent-banner button {
    background-color: #1abc9c;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-consent-banner button:hover {
    background-color: #16a085;
}


.small-image {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    border-radius: 10px;
}


.navbar {
    margin-bottom: 1rem;
}

.footer {
    padding: 1rem 0;
    text-align: center;
}

.carousel-inner {
    max-height: 800px;
}

.carousel-inner img {
    object-fit: cover;
    max-height: 800px;
}

.carousel-item {
    max-height: 1500px;
}

.carousel .carousel-inner {
    max-height: 800px;
}

