/* Підключаємо сучасний шрифт */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

body { 
    font-family: 'Montserrat', sans-serif !important; 
    background-color: #f4f7f6 !important; 
    color: #333 !important;
}

/* Оновлюємо контейнер (робимо його чистішим) */
#wrapper {
    max-width: 1200px !important;
    margin: 20px auto !important;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    border-radius: 12px !important;
    border: none !important;
    overflow: hidden;
}

/* Сучасна шапка */
#header {
    padding: 30px 50px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

#logo h1 a {
    color: #004a99 !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
}

/* Оновлення меню */
#mainmenu {
    background: #004a99 !important;
    padding: 0 50px !important;
}

.sf-menu li a {
    padding: 15px 20px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    color: #fff !important;
    text-transform: uppercase !important;
}

.sf-menu li.current a, .sf-menu li a:hover {
    background: rgba(255,255,255,0.1) !important;
}

/* Текстовий блок */
#content h4 {
    color: #004a99 !important;
    font-size: 26px !important;
    margin-bottom: 25px !important;
    border-left: 5px solid #004a99;
    padding-left: 15px;
}