html
{
    font-size: 16px;
    height: 100%;
}

body
{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    color: #1f2937;
    background-color: #ffffff;
}

.page-shell
{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content
{
    flex: 1 0 auto;
    padding-top: 32px;
    padding-bottom: 48px;
}

.footer
{
    flex-shrink: 0;
    font-size: 0.95rem;
    background-color: #ffffff;
    padding: 16px 0;
    margin-top: 32px;
}

.container
{
    max-width: 960px;
}

h1, h2, h3
{
    color: #111827;
    font-weight: 600;
    line-height: 1.25;
}

h1
{
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

h2
{
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 0.9rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #e5e7eb;
}

h3
{
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

    h3 strong
    {
        font-weight: 700;
    }

p
{
    margin-bottom: 1rem;
}

ul
{
    margin-bottom: 1.25rem;
    padding-left: 1.4rem;
}

li
{
    margin-bottom: 0.45rem;
}

section
{
    margin-bottom: 2.5rem;
}

a
{
    color: #0f4c81;
    text-decoration: none;
}

    a:hover
    {
        text-decoration: underline;
    }

.navbar
{
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.navbar-brand
{
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.nav-link
{
    font-weight: 500;
}

.border-bottom
{
    border-bottom: 1px solid #e5e7eb !important;
}

.border-top
{
    border-top: 1px solid #e5e7eb !important;
}

.box-shadow
{
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.nav-link.active
{
    font-weight: 600;
    color: #000 !important;
}

.intro,
.card-section
{
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.intro
{
    margin-bottom: 3rem;
}

.card-section + .card-section
{
    margin-top: 2rem;
}

    .intro p
    {
        font-size: 1.1rem;
    }

.lead
{
    font-size: 1.2rem;
    font-weight: 500;
    color: #111827;
}

.home-grid 
{
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 992px) 
{
    .home-grid 
	{
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.brand-link 
{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo 
{
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.brand-block 
{
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name 
{
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
}

.brand-tagline 
{
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 2px;
}

.form-control 
{
    max-width: 100%;
}

textarea.form-control 
{
    resize: vertical;
}

.honeypot-field 
{
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.cv-link 
{
    margin-top: 1.5rem;
}

.cv-link a 
{
    font-weight: 500;
}