body {
    background-color: #ffffff;
}

.site-title {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 300;
    font-family: system-ui;
    transform: translate(-40px, 10px);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo img {
    width: 108px;
    height: 108px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.search-bar form {
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
}

.search-bar input[type="search"] {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    padding: 0;
    color: black;
    width: 8rem;
}

.search-bar button {
    background: none;
    border: none;
    color: black;
    padding: 0.3rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.site-navigation ul {
    display: flex;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    gap: 2vw;
}

.site-navigation a {
    text-decoration: none;
    color: #000;
}

.header-left-group{
    display: flex;
    align-items: center;
}

.header-case-number{
    display: flex;
    font-weight: 300;
    font-size: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 2.5vw;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        padding: 1vw;
        align-items: center;
        text-align: center;
        gap: 0.25rem;
    }
    
    .site-title {
        transform: translate(0, 0);
        font-size: 1.5rem;
        margin: 0;
        padding: 0;
    }
    
    .site-logo img {
        width: 80px;
        height: 80px;
        margin: 0;
        padding: 0;
    }
    
    .header-left-group {
        flex-direction: column;
        gap: 0.25rem;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .site-navigation {
        margin: 0;
        padding: 0;
    }
    
    .site-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
        margin: 0.25rem 0;
        padding: 0;
        list-style: none;
    }
    
    .site-navigation li {
        margin: 0;
        padding: 0;
    }
    
    .site-navigation a {
        margin: 0;
        padding: 8px 16px;
        display: inline-block;
        border: 1px solid #000;
        border-radius: 20px;
        text-decoration: none;
        background: transparent;
        color: #000;
        transition: all 0.3s ease;
    }
    
    .site-navigation a:hover {
        background: #000;
        color: #fff;
    }
    
    .header-left-group, .header-right-group {
        flex-direction: column;
        gap: 0.25rem;
        margin: 0;
        padding: 0;
    }
}

footer {
    display: none !important;
}