body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #222;
}

header {
    background: #002d5b;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    position: fixed;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    min-height: 30px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
}

.desktop-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #fafafa;
    padding: 10px 20px;
}

.mobile-nav a {
    padding: 10px 0;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.hero {
    background: #f2f6fc;
    padding: 60px 20px;
    text-align: center;
}

.container {
    background-color: white;
    margin-bottom: 200px;
}

.content {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
}

.cta {
    background: #e8f0ff;
    padding: 15px;
    margin-top: 20px;
    border-left: 4px solid #002d5b;
}

.tel {
    color: #222;
    text-decoration: underline;
}

.footer {
    background: #111;
    color: white;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    min-height: 160px;
    z-index: -1;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    color: white;
    display: block;
    margin-bottom: 6px;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .mobile-nav a {
        color: #222;
    }

    .footer {
        position: relative;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }
}
