*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333333; background-color: #ffffff; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 12px 24px; font-weight: 600; border-radius: 4px; text-align: center; cursor: pointer; transition: background-color 0.2s ease; }
.btn-primary { background-color: #0056b3; color: #ffffff; }
.btn-primary:hover { background-color: #004085; }
.btn-secondary { background-color: #6c757d; color: #ffffff; }
.btn-secondary:hover { background-color: #5a6268; }
.btn-phone { background-color: #28a745; color: #ffffff; padding: 10px 18px; font-size: 0.95rem; }
.btn-phone:hover { background-color: #218838; }
.site-header { background-color: #ffffff; border-bottom: 1px solid #e5e5e5; position: sticky; top: 0; z-index: 1000; }
.header-container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo a { font-weight: 700; font-size: 1.15rem; color: #1a1a1a; }
.main-nav ul { display: flex; gap: 30px; }
.main-nav a { font-weight: 500; color: #4a4a4a; }
.main-nav a:hover, .main-nav a.active { color: #0056b3; }
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.hero { padding: 60px 0; background-color: #f8f9fa; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; color: #1a1a1a; }
.hero-lead { font-size: 1.125rem; color: #555555; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; }
.hero-image img { border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.section { padding: 70px 0; }
.bg-light { background-color: #f8f9fa; }
.section-title { text-align: center; max-width: 700px; margin: 0 auto 50px auto; }
.section-title h2 { font-size: 2rem; margin-bottom: 15px; color: #1a1a1a; }
.section-title p { color: #666666; font-size: 1.05rem; }
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.align-center { align-items: center; }
.card, .service-card { background: #ffffff; padding: 30px; border-radius: 6px; border: 1px solid #e5e5e5; }
.card h3, .service-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: #1a1a1a; }
.card p, .service-card p { color: #555555; font-size: 0.95rem; margin-bottom: 15px; }
.service-card .read-more { color: #0056b3; font-weight: 600; font-size: 0.9rem; }
.section-cta-wrap { text-align: center; margin-top: 40px; background: #ffffff; padding: 30px; border-radius: 6px; border: 1px solid #e5e5e5; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: #ffffff; padding: 25px; border-radius: 6px; border: 1px solid #e5e5e5; }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 10px; color: #1a1a1a; }
.faq-item p { color: #555555; font-size: 0.95rem; }
.location-banner-box { background: #f8f9fa; padding: 35px; border-radius: 6px; border: 1px solid #e5e5e5; }
.page-header { background-color: #f8f9fa; padding: 50px 0; text-align: center; border-bottom: 1px solid #e5e5e5; }
.page-header h1 { font-size: 2.25rem; margin-bottom: 10px; color: #1a1a1a; }
.page-header p { color: #666666; font-size: 1.05rem; }
.site-footer { background-color: #1a1a1a; color: #ffffff; padding: 60px 0 20px 0; }
.footer-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 20px; color: #ffffff; }
.footer-col p, .footer-col li a { color: #b3b3b3; font-size: 0.95rem; margin-bottom: 10px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { border-top: 1px solid #333333; padding-top: 20px; text-align: center; color: #888888; font-size: 0.85rem; }
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background-color: #28a745; z-index: 999; text-align: center; padding: 12px; }
.mobile-cta-btn { color: #ffffff; font-weight: 700; font-size: 1.05rem; display: block; }
@media (max-width: 900px) {
    .hero-container, .grid-3, .grid-2, .footer-container { grid-template-columns: 1fr; }
    .main-nav { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: #ffffff; border-bottom: 1px solid #e5e5e5; }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; padding: 20px; gap: 15px; }
    .mobile-menu-toggle { display: block; }
    .mobile-sticky-bar { display: block; }
    body { padding-bottom: 60px; }
}
