
body{margin:0;font-family:Arial,sans-serif;background:#111;color:#fff}
.hero{height:100vh;background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.7)),url('images/hero-biker-dog.jpg') center/cover;display:flex;align-items:center;justify-content:center;text-align:center}
.hero h1{font-size:4rem}
.btn{background:#ff7a00;color:#fff;padding:15px 30px;text-decoration:none;border-radius:30px}
.section{max-width:1100px;margin:auto;padding:60px 20px}
.cards{display:flex;gap:20px;flex-wrap:wrap}
.card{background:#1e1e1e;padding:30px;border-radius:10px;flex:1}
.flyer img{max-width:100%;border-radius:12px}
form{display:flex;flex-direction:column;gap:12px}
input,textarea,button{padding:14px;border-radius:8px;border:none}
button{background:#ff7a00;color:#fff;font-weight:bold}
footer{text-align:center;padding:30px;background:#000}
.hero-content p{
    margin-bottom: 50px;
    font-size: 1.5rem;
}
.cards{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    justify-content:center;
}

.card{
    flex:1;
    min-width:280px;
    background:#1a1a1a;
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    border-top:4px solid #ff7a00;
    transition:all .3s ease;
}

.card:hover{
    transform:translateY(-8px);
}

.icon{
    font-size:3rem;
    margin-bottom:20px;
}

.card h3{
    color:#ff7a00;
    margin-bottom:15px;
    font-size:1.5rem;
}

.card p{
    color:#d5d5d5;
    line-height:1.7;
}