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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #222222;
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary {
    background-color: #0056b3;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #004085;
}

.btn-secondary {
    background-color: #e9ecef;
    color: #212529;
}

.btn-secondary:hover {
    background-color: #dde2e6;
}

.btn-phone {
    background-color: #28a745;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 4px;
}

.btn-phone:hover {
    background-color: #218838;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    font-size: 1.15rem;
    font-weight: 700;
    color: #003366;
}

.main-nav ul {
    display: flex;
    gap: 24px;
}

.main-nav a {
    font-weight: 500;
    color: #4a5568;
    transition: color 0.2s;
}

.main-nav a:hover, .main-nav a.active {
    color: #0056b3;
}

.hero {
    padding: 80px 0;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.location-badge {
    display: inline-block;
    background-color: #e2e8f0;
    color: #2d3748;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: #4a5568;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card, .service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card h3, .service-card h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 12px;
}

.card p, .service-card p {
    color: #4a5568;
    font-size: 0.95rem;
}

.section-cta-box {
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.section-cta-box p {
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
}

.check-list {
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #4a5568;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.map-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.map-box h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1a202c;
}

.address-text, .hours-text {
    color: #4a5568;
    margin-bottom: 12px;
}

.map-link-wrap {
    margin-top: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 10px;
}

.faq-item p {
    color: #4a5568;
    font-size: 0.95rem;
}

.faq-item a {
    color: #0056b3;
    text-decoration: underline;
}

.final-cta-section {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
}

.final-cta-section h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.final-cta-section p {
    color: #cbd5e0;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.site-footer {
    background-color: #1a202c;
    color: #a0aec0;
    padding: 60px 0 20px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-col p, .footer-col li {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    font-size: 0.85rem;
}

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #28a745;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.mobile-call-btn {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px;
    width: 100%;
}

@media (max-width: 900px) {
    .hero-container, .grid-2, .grid-3, .faq-grid, .footer-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .main-nav {
        display: none;
    }

    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }
}
