html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color:#EBF2FF;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.logo {
    background:url("../img/logo.png") no-repeat;
    background-size:100% 100%;
    width: 533px;
    height: 80px;
    margin:30px auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.nav-item.active{
    color: #4a90e2;
    border-bottom-color: #4a90e2;
}
.nav-item:hover {
    color: #4a90e2;
    border-bottom-color: #4a90e2;
}

/* Footer */
.footer {
    background: #14206E;    
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    background:url("../img/foot-logo.png") no-repeat;
    background-size: 100% 100%;
    width: 533px;
    height: 80px;
    margin:0 auto 50px auto;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.footer-logo-text {
    font-size: 18px;
    color: white;
    font-weight: bold;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

.footer-link {
    font-size: 14px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.footer-link:hover {
    border-bottom-color: white;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    font-size: 14px;
    color: white;
    margin-bottom: 8px;
    text-align: center;
}

.footer-right {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.company-info-title {
    font-size: 18px;
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
}

.company-description {
    font-size: 14px;
    color: white;
    line-height: 1.6;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}