body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #0077cc;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

#hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero-image {
    width: 100%;
    height: auto;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#testimonials {
    background: white;
    padding: 20px;
    margin-top: 20px;
}

.testimonial {
    background: #e9e9e9;
    padding: 10px;
    margin-top: 10px;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 20px;
}

#cookieConsent {
    background: #eee;
    color: #333;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

#cookieConsent a {
    color: #0077cc;
}