body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; padding: 0; background: #f4f4f4; color: #333; }
header { background: #003366; color: white; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
header a { color: white; text-decoration: none; font-weight: bold; }
.logo { font-size: 1.5em; font-weight: 800; letter-spacing: 1px; }
.banner { background: #cc0000; color: white; padding: 5px 10px; font-size: 0.9em; font-weight: bold; border-radius: 4px; }

.hero { background: #004080; color: white; padding: 60px 20px; text-align: center; }
.search-box { margin-top: 20px; padding: 20px; background: rgba(255,255,255,0.1); border-radius: 8px; display:inline-block; }
input, select, button { padding: 12px; margin: 5px; border-radius: 4px; border: none; font-size:16px; }
input[type="text"], input[type="tel"] { width: 250px; }
button { background: #cc0000; color: white; font-weight: bold; cursor: pointer; }
button:hover { background: #ff3333; }

.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; margin-top:20px; }
.card { display:block; background:white; padding:15px; border-radius:5px; text-decoration:none; color:#003366; font-weight:bold; text-align:center; transition:0.2s; }
.card:hover { transform:translateY(-2px); box-shadow:0 5px 15px rgba(0,0,0,0.1); }

.main-content { display: flex; gap: 30px; }
.left-col { flex: 2; }
.right-col { flex: 1; background: white; padding: 20px; border-radius: 8px; height: fit-content; }

.provider-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); border-top: 5px solid #003366; margin-bottom: 20px; }
.provider-card.featured { border-top: 5px solid #cc0000; }
.rating { color: #ffc107; font-weight: bold; margin: 10px 0; }

.btn-phone { display: block; background: #28a745; color: white; text-align: center; padding: 15px; font-size: 1.5em; text-decoration: none; border-radius: 5px; margin: 10px 0; font-weight:bold; }
.btn-phone:hover { background: #218838; }

.form-box input, .form-box select { width: 100%; box-sizing: border-box; margin-bottom: 10px; border: 1px solid #ccc; }
.btn-submit { width:100%; background:#003366; margin-top:10px; }
.btn-submit:hover { background:#004080; }

.local-links { list-style: none; padding: 0; }
.local-links li { margin-bottom: 8px; border-bottom:1px solid #eee; padding-bottom:5px; }
.local-links a { color: #003366; text-decoration: none; }
.local-links a:hover { text-decoration: underline; color:#cc0000; }

@media (max-width: 768px) {
    .main-content { flex-direction: column; }
    .search-box input, .search-box select { width: 100%; }
}