
:root{
 --red:#c8102e;--dark:#111827;--gray:#6b7280;--light:#f9fafb;--border:#e5e7eb;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
 margin:0;
 font-family:Inter,Segoe UI,Arial,sans-serif;
 color:var(--dark);
 background:#fff;
 display:flex;
 flex-direction:column;
}
a{text-decoration:none;color:inherit}
.container{max-width:1280px;margin:auto;padding:24px}
main{flex:1}

header{background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:10}
nav{display:flex;justify-content:space-between;align-items:center}
.brand{font-weight:900;font-size:22px}
nav a{margin-left:20px;font-weight:700}

.hero{background:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2000&q=80') center/cover}
.hero-overlay{background:rgba(0,0,0,.6)}
.hero-content{text-align:center;color:#fff;padding:90px 20px}
.hero h1{font-size:44px;margin:0}
.hero p{font-size:18px;max-width:680px;margin:16px auto}
.hero-actions a{margin:10px}

.btn{display:inline-block;padding:15px 28px;background:var(--red);color:#fff;border-radius:6px;font-weight:900}
.btn.secondary{background:#fff;color:#111827}

.section-title{font-size:30px;margin:60px 0 22px;text-align:center}
.center{text-align:center}

.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:24px}
.card{border:1px solid var(--border);border-radius:10px;overflow:hidden;background:#fff;box-shadow:0 10px 28px rgba(0,0,0,.07)}
.card img{width:100%;height:210px;object-fit:cover}
.card .pad{padding:14px}
.price{color:var(--red);font-size:22px;font-weight:900;margin:6px 0}
.meta{color:var(--gray);font-size:14px}

.trust{background:var(--light);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.trust .grid{text-align:center}

.contact-box{max-width:760px;margin:0 auto;text-align:center}

.footer{
 background:#111827;
 color:#fff;
 text-align:center;
}
.footer p{margin:6px 0;color:#d1d5db}
.footer a{color:#d1d5db;font-weight:600;margin:0 10px}
.footer .links{margin:12px 0}
.footer .attribution{
 margin-top:14px;
 font-size:12px;
 color:#9ca3af;
}


/* --- Enhancements: alignment & sticky footer --- */
html, body { height: 100%; }
body { display: flex; flex-direction: column; }
.main { flex: 1; }

header, footer { width: 100%; }
header nav a { margin-right: 16px; }
.container { max-width: 1100px; margin: 0 auto; padding: 24px; }

.section-title { margin: 32px 0 16px; text-align: center; }

footer { background: #0f172a; color: #fff; }
footer .container { text-align: center; padding: 32px 24px; }
footer a { color: #fff; font-weight: 600; margin: 0 6px; }
