/* Reset */ 
* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: Arial, sans-serif; background: #fff; color: #333; line-height: 1.6; }

/* Header / Nav */
header { background: #ffffff; padding: 20px; border-bottom: 1px solid #eaeaea; display: flex; justify-content: space-between; align-items: center; }
header h1 { color: #222; }
nav a { margin: 0 10px; text-decoration: none; color: #333; font-weight: bold; padding: 6px 10px; border-radius: 10px; transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
nav a:hover, nav a.active { color: #007bff; background: rgba(255,255,255,0.6); backdrop-filter: blur(8px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); transform: translateY(-1px); }

/* Hero */
.hero { padding: 80px 20px; text-align: center; max-width: 900px; margin: 0 auto; }
.hero h2 { font-size: 2rem; margin-bottom: 10px; }
.hero p { margin-bottom: 20px; color: #555; }

/* Button */
.btn { display: inline-block; padding: 12px 20px; background: #0b5bd3; color: #fff; border-radius: 8px; text-decoration: none; font-weight: 600; transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.btn:hover { background: #0a4bb0; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(11,91,211,0.25); }

/* Content */
.content { padding: 40px 20px; max-width: 1000px; margin: 0 auto; }

/* Services grid */
.service-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 16px; }
.card { background: rgba(255,255,255,0.7); border: 1px solid #eee; border-radius: 12px; padding: 16px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: transform .2s ease, box-shadow .2s ease; backdrop-filter: blur(8px); }
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }

/* Contact form */
.contact-form { max-width: 460px; margin: 0 auto; display: grid; gap: 12px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { cursor: pointer; }

/* Footer */
footer { background: #fafafa; padding: 20px; text-align: center; border-top: 1px solid #eaeaea; margin-top: 30px; }
