:root {
    --primary-color: #b8860b;
    --secondary-color: #ffcc00;
    --text-color: #3a2e1f;
    --bg-color: #fffaf0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--text-color); background-color: var(--bg-color); scroll-behavior: smooth; }
header { background: var(--primary-color); color: white; padding: 20px 0; text-align: center; position: sticky; top: 0; z-index: 10; }
nav a { color: white; margin: 0 15px; text-decoration: none; font-weight: 500; }
section { padding: 60px 10%; text-align: center; }
h1, h2 { color: var(--primary-color); }
.hero { background: linear-gradient(rgba(184,134,11,0.8), rgba(255,204,0,0.8)), url('https://cdn.pixabay.com/photo/2015/01/08/18/26/printing-593294_1280.jpg') center/cover no-repeat; color: white; padding: 120px 10%; }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.card { background: white; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); padding: 20px; transition: 0.3s; }
.card:hover { transform: translateY(-5px); }
.card img { width: 100%; border-radius: 10px; margin-bottom: 15px; }
footer { background: var(--primary-color); color: white; text-align: center; padding: 20px 10%; }
footer a { color: #fff; text-decoration: underline; }