body { font-family: Arial, sans-serif; margin: 0; background: #f9fafb; color: #333; }
header { background: #fffff8; box-shadow: 0 1px 3px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 30; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.nav { display: flex; justify-content: space-between; align-items: center; height: 64px; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #333; font-weight: bold; }
.logo-icon { width: 40px; height: 40px; background: #872e27; border-radius: 6px; display: flex; justify-content: center; align-items: center; }
nav a { margin-left: 16px; text-decoration: none; color: #555; font-size: 14px; }
nav a:hover { color: #000; }
.hero { background: #fffff8; border-radius: 16px; padding: 3rem; box-shadow: 0 2px 4px rgba(0,0,0,0.1); margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.hero h1 { font-size: 2rem; font-weight: 800; }
.hero p { color: #555; }
.buttons a { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 6px; text-decoration: none; margin-right: 8px; font-weight: 500; }
.btn-primary { background: #872e27; color: #fffff8; }
.btn-outline { border: 1px solid #ccc; color: #333; }
.track input { padding: 0.5rem; border: 1px solid #ccc; border-radius: 4px; width: 60%; }
.track button { background: #872e27; color: #fffff8; border: none; border-radius: 4px; padding: 0.5rem 1rem; }
.hero-image { background:#fffff83e6; border-radius:8px; display:flex; align-items:center; justify-content:center; padding:2rem; }
.tiles { margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.tile { background: #fffff8; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.tile h3 { margin: 0 0 0.5rem; }
.features { margin-top: 3rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.feature { background: #fffff8; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
footer { border-top: 1px solid #ddd; margin-top: 3rem; padding: 2rem 0; font-size: 14px; color: #555; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
footer h5 { margin-bottom: 0.5rem; font-weight: bold; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 0.25rem; }
.bottom { text-align: center; margin-top: 1rem; color: #888; }

img {
    max-width: 100%;
    height: auto;
}