/* 2026 旗艦版專業地政樣式表 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;500;700&display=swap');

:root {
    --primary: #004aad; --accent: #C5A059; --line: #06C755; --bg: #f8f9fa;
}

body { font-family: 'Noto Sans TC', sans-serif; margin: 0; background: var(--bg); color: #333; }

/* Header & Dropdown */
header { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 15px 8%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
nav a { margin-left: 20px; text-decoration: none; color: #333; font-weight: 500; }
.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background: white; min-width: 160px; box-shadow: 0 8px 16px rgba(0,0,0,0.1); border-radius: 8px; top: 100%; }
.dropdown-content a { display: block; padding: 10px 15px; margin: 0; border-bottom: 1px solid #eee; }
.dropdown:hover .dropdown-content { display: block; }

/* Service Grid (Base44 工具感) */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.service-card { background: white; padding: 20px; border-radius: 12px; text-align: center; transition: 0.3s; border: 1px solid #eee; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.service-icon { font-size: 2.5rem; margin-bottom: 10px; }

/* Main Card */
.main-card { max-width: 800px; margin: 40px auto; background: white; border-radius: 20px; padding: 40px; border-top: 8px solid var(--accent); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.price-box { font-size: 3rem; color: var(--primary); font-weight: 700; }

footer { background: #1a1a1a; color: white; padding: 40px 8%; margin-top: 60px; text-align: center; }