html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background-color: #ffffff;
    line-height: 1.6;
}

.hero {
    background-color: #002B51;
    color: #ffffff;
    padding: 80px 20px;
}

.hero p {
    margin: 0 0 20px 0;
    font-size: 16px;
}

.hero a {
    color: #ffffff;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero a svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.contacts {
    background: #f5f5f5;
    padding: 80px 20px;
}

.contact {
    margin-bottom: 40px;
}

.contact h3 {
    color: #002B51;
    margin-bottom: 0px;
    font-size: 22px;
}

.contact p {
    margin-bottom: 0px;
    font-size: 16px;
}

.email-link {
    text-decoration: underline;
    color: #000000;
}

.email-link:hover {
    color: #000000;
}

footer {
    background: #002B51;
    color: #ffffff;
    padding: 80px 20px;
}

.footer-logo {
    font-family: "Times New Roman", Times, serif;
    font-size: 30px;
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 40px;
}

.footer-links a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 25px;
}

.copyright {
    font-size: 13px;
    color: #aaaaaa;
    margin-top: 20px;
}

hr {
    border: none;
    border-top: 1px solid #fff;
    margin: 30px 0;
}
