:root {
    --primary-color: #0b2545;
    --secondary-color: #134074;
    --accent-color: #8da9c4;
    --text-color: #1d2d44;
    --bg-light: #eeede7;
    --white: #ffffff;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --container-width: 1100px;
    --transition: all 0.2s ease-in-out;
}

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

body {
    font-family: var(--font-stack);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

ul {
    list-style: none;
}

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

/* Header */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.main-nav a.active, .main-nav a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

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

.btn-phone:hover {
    background-color: #157347;
    color: var(--white);
    text-decoration: none;
}

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

/* Hero */
.hero {
    padding: 60px 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;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

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

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

.hero-inner {
    background-color: var(--bg-light);
    padding: 50px 0;
    text-align: center;
}

.hero-inner h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Sections */
.section {
    padding: 70px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-lead {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 30px;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

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

/* Cards & Items */
.card, .service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    height: 100%;
}

.card h3, .service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card ul, .service-list {
    margin-top: 15px;
    padding-left: 20px;
    list-style: disc;
}

.card li, .service-list li {
    margin-bottom: 8px;
}

.text-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
}

/* FAQ */
.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--accent-color);
}

/* Footer */
.site-footer {
    background-color: #061528;
    color: #a0aec0;
    padding: 50px 0 80px 0;
    font-size: 0.95rem;
}

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

.site-footer strong {
    color: var(--white);
}

.site-footer a {
    color: #a0aec0;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer ul {
    margin-top: 10px;
}

.site-footer li {
    margin-bottom: 6px;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #198754;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-call-btn {
    display: block;
    text-align: center;
    color: var(--white);
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}

.mobile-call-btn:hover {
    color: var(--white);
    background-color: #157347;
    text-decoration: none;
}

/* Responsive */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 900px) {
    .hero-container, .grid-2, .grid-3, .footer-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-sticky-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
}