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

body {
    margin: 0;
    padding: 0;
    font: 16px 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

ul, li {
    list-style: none;
}

.wapper {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    margin-left: 20px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    height: 80px;
}

.logo img {
    max-height: 70px;
    width: auto;
    vertical-align: middle;
    object-fit: contain;
}

/* header */
.navs {
    background: #1387c9;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navs ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    min-height: 60px;
}

.navs ul li a {
    color: #fff;
    padding: 0 24px;
    height: 60px;
    line-height: 60px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navs ul li a:hover, .navs ul li a.current {
    background: #0f70a8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* small nav */
.smallnav {
    margin: 20px auto;
}


/* footer */
.footer {
    background: #1387c9;
    color: #fff;
    text-align: center;
    margin-top: 30px;
    padding: 10px 0;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
}

.footer .wapper:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 5px;
}

.footer span {
    position: relative;
}

.footer span:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.footer a {
    color: #fff;
    padding: 3px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

.footer a:hover {
    color: #ffd700;
    transform: translateY(-1px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer .line {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 5px 0;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.footer .copyright {
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
    padding: 3px 0;
    font-weight: 400;
}