body{
    margin:0;
    font-family:Arial, sans-serif;
    line-height:1.8;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#111;
    padding:20px 0;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

header h1{
    color:#fff;
}

nav ul{
    list-style:none;
    display:flex;
    gap:20px;
}

nav a{
    color:#fff;
    text-decoration:none;
}

section{
    padding:60px 0;
}

h1,h2,h3{
    color:#111;
}

.hero{
    background:#f5f5f5;
}

footer{
    background:#111;
    color:#fff;
    padding:40px 0;
}

footer a{
    color:#fff;
    margin-right:15px;
}

#cookie-banner{
    position:fixed;
    bottom:0;
    width:100%;
    background:#222;
    color:#fff;
    padding:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

#cookie-banner button{
    padding:10px 20px;
    border:none;
    cursor:pointer;
}