html, body {
    margin: 0;
    padding: 0;
    font-family: sans-serif, arial;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}
#page {
    
}
header {
    position: relative;
    background-color: #263D88;
    z-index: 10;
}
header::before {
    content: "";
    position: absolute;
    display: block;
    width: calc(10% + 20px);
    height: calc(100% + 10px);
    background-color: #E3EDF7;
    transform: skewX(-35deg);
}
.wrapper {
    max-width: 80%;
    padding: 0 20px;
    margin: 0 auto;
}
header .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
header .logo {
    position: relative;
    display: flex;
    align-items: center;
}
header .logo a {
    position: relative;
}
header .logo::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: calc(100% + 20px);
    background-color: #E3EDF7;
    transform: skewX(-35deg);
}
header .navigation {
    display: flex;
    gap: 20px;
}
.language-switcher {
    display: flex;
    align-items: center;
    color: #fff;
}
.language-switcher li {
    list-style: none;
}
.language-switcher li:last-child {
    border-left: 1px solid #ddd;
    padding-left: 5px;
    margin-left: 5px; 
}
.language-switcher li img {
    width: 18px;
    height: auto;
}
header nav {
    height: 100%;
}
header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}
header ul li {
    
}
header ul li a {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}
header ul li a:hover {
    color: #FDB813;
}
.hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.hero-banner .wrapper {
    display: flex;
    justify-content: space-between;
    clip-path: polygon(3% 0, 100% 0, 100% 100%, 0 100%);
    padding-left: 50px;
    padding-right: 20%;
    background-color: #E3EDF7;
}
.hero-banner .foreground {
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 100%;
}
.hero-banner a {
    display: inline-block;
    margin: 20px 0;
    text-decoration: none;
    color: #263D88;
    font-size: 16px;
}
.hero-banner a:hover {
    color: #fff;
}
.content {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: 80px 0;
    margin: 40px 0;
}
.section h2 {
    margin: 0 0 30px 0;
    color: #263D88;
    text-align: center;
}
.section h4,
.section p {
    padding-left: 20px;
    padding-right: 20px;
}
.section.bg {
    background-image: url(../images/bg.png);
    background-size: cover;
    color: #fff;
}
.units {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.units .unit {
    width: calc(33.3333% - 20px);
}
.units .unit .image {
    position: relative;
    padding-top: 60%;
}
.units .unit .image img {
    position: absolute;
    left:0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}
.products .product {
    width: calc(33.3333% - 30px);
    text-decoration: none;
    text-align: center;
    color: #263D88;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.products .product .image {
    position: relative;
    padding-top: 60%;
    margin-bottom: 20px;
}
.products .product .image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
footer {
    margin-top: 60px;
    padding: 30px 0;
    color: #fff;
    background-color: #0d3a85;
}
.copyright {
    padding: 20px 0;
    background-color: #092451;
    border-top: 1px solid #354c70;
    text-align: center;
    color: #fff;
}
.breadcrumb {
    list-style: none;
    color: #FDB813;
    margin: 20px 0;
    padding: 10px 0;
}
.breadcrumb li {
    display: inline-block;
}
.breadcrumb a {
    text-decoration: none;
    color: #FDB813;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span {
    color: gray;
}
.product-detail {
    display: flex;
    gap: 40px;
}
.lef-sidebar {
    width: 250px;
}
.lef-sidebar h2 {
    margin: 0;
    color: #263D88;
}
.lef-sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.lef-sidebar ul li {
    display: block;
    background-color: #0d3a85;
    border-bottom: 1px solid #354c70;
}
.lef-sidebar ul li a {
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
}
.main-content {
    width: calc(100% - 290px);
}
h1.title {
    margin: 0 0 20px 0;
    color: #263D88;
    font-size: 24px;
    border-bottom: 1px solid #354c70;
}
.product-image img {
    max-width: 100%;
}