:root {
    --primary-color: #0284c7;
    --primary-dark: #0369a1;
    --text-color: #1e293b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    padding-bottom: 60px;
}

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

ul {
    list-style: none;
}

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

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

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

.main-nav a {
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
}

.btn-phone {
    background-color: #0f172a;
    color: var(--white);
    padding: 10px 18px;
    font-size: 0.95rem;
}

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

.hero {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: #475569;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #0f172a;
}

.section-header p {
    color: #475569;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.service-card p {
    color: #475569;
    margin-bottom: 20px;
}

.service-cta {
    font-weight: 600;
    color: var(--primary-color);
}

.service-cta:hover {
    text-decoration: underline;
}

.problem-solution-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.text-block p {
    color: #475569;
    margin-bottom: 20px;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.local-area-section {
    padding: 60px 0;
    text-align: center;
}

.local-area-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #0f172a;
}

.local-area-section p {
    color: #475569;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.map-container a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.faq-item p {
    color: #475569;
}

.final-cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #0f172a;
    color: var(--white);
}

.final-cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

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

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

.site-footer {
    background-color: #090d16;
    color: #94a3b8;
    padding: 60px 0 30px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-col p {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    font-size: 0.9rem;
}

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

.mobile-call-btn {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .hero-container, .content-split {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}
