body {
    background: linear-gradient(to right, rgba(229, 243, 237, 0.5), rgba(0, 58, 230, 0.5));
}

.sticky-top.header {
    padding: 0 0 20px 0;
}

.header img {
    display: block;
    width: 250px;
    padding: 0 0 0 50px;
}

.content-wrapper {
    background: white;
    margin: 40px auto;
    padding: 40px;
    border-radius: 10px;
    max-width: 1600px;
    box-shadow: 0px 0px 30px 0px #a8b8ff;
}

.header-text {
    font-weight: bold;
    font-size: 35px;
    background-color: #0a2496;
    color: white;
    padding: 15px;
    padding-left: 30px;
    border-radius: 45px;
}

.content {
    padding: 35px;
    background-color: #E5F3ED;
    border-radius: 20px;
    color: #1c34cf;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1106e7;
    border-radius: 100%;
}

.fa-solid, .fa-regular {
    font-size: 16px;
    color: white;
}

.facility {
    flex: 0 0 auto;
    width: calc(50% - 0.25rem);
    background-color: #002676;
    border-radius: 20px;
    padding: 10px;
    color: white;
    text-align: center;
    font-size: 20px;
    transition: 0.3s;
}

.facility img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.retail {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    background: white;
    border-radius: 20px;
}

.facility:hover, .retail:hover, .lto:hover {
    transform: scale(1.1);
}

.lto {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.lto img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.zoomable {
    cursor: pointer;
    transition: 0.3s;
}

.zoomable:hover {
    opacity: 0.85;
}

.img-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.img-modal.open {
    display: flex;
}

.img-modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.img-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.footer {
    margin: 0px;
    background-color: #001553;
    padding: 50px;
    color: white;
}

.footer-features {
    row-gap: 20px;
}

.footer-feature {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer hr {
    margin: 40px 0;
    border-color: rgba(255, 255, 255, 0.25);
}

.footer-contacts {
    row-gap: 30px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.footer-contact p {
    margin: 0;
}

.header {
    background: white;
    padding: 30px;
    box-shadow: 0px 0px 30px 0px rgba(5, 93, 69, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .partner-logo {
    padding: 0 50px 0 0;
}