
body{font-family:Arial,sans-serif;margin:0;line-height:1.6;color:#333}
header{background:#111;color:#fff;padding:15px}
nav a{color:#fff;margin-right:15px;text-decoration:none}
.hero{
    background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}
.overlay{padding:30px}

.container{
    max-width:1100px;
    margin:auto;
    padding:20px;
}

.cards{
   display:block;
    grid-template-columns: 1fr 1fr 1fr;
    gap:20px;
}

.card{
    border:1px solid #ddd;
    padding:20px;
    border-radius:8px;
}

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

img.logo{
    max-width:350px;
    width:100%;
}

.btn{
    display:inline-block;
    padding:12px 25px;
    margin:5px;
    background:#f5a623;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

.btn:hover{
    opacity:0.9;
}
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,250px));
    gap:20px;
    justify-content:center;
}

.gallery img{
    width:250px;
    height:180px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}
orm{
    max-width:600px;
}

input,
textarea{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:5px;
    box-sizing:border-box;
    margin-top:5px;
}

textarea{
    min-height:120px;
}