@media (min-width: 992px) {
    body {
        padding-top: 0;
    }
}

.container {
    max-width: 820px;
    width: 100%;
    background: #fdfcfa;
    box-shadow: 0 8px 30px rgba(0, 20, 50, 0.06);
    border: 1px solid rgba(0, 40, 80, 0.04);
    min-height: 100vh;
    margin: 0 auto;
    text-align: left;
    padding: 0;
}

/* Strictly following PDF order and style */

/* 1. Banner section with background image and logo */
.banner {
    position: relative;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.banner img {
    position: relative;
    vertical-align: middle;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.banner .logo {
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 20px;
    width: 210px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. Content Block */
.content-block {
    background-color: #fdfcfa;
    padding: 40px 110px 36px;
    text-align: center;
}

.content-block .title {
    font-size: 12px;
    text-transform: uppercase;
    color: #a5b2c8;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
}

.content-block h1 {
    color: #00325b;
    font-size: 30px;
    margin: 0 auto 20px;
    font-weight: 700;
}

.content-block p {
    text-wrap: balance;
}

/* Content Footer */
.content-footer {
    background-color: #00325b;
    display: flex;
    column-gap: 2rem;
    padding: 25px 50px;
    color: #8fa2ae;
    position: sticky;
    top: 100%;
}

.content-footer .col {
    flex: 1;
}

.content-footer p {
    color: #8fa2ae;
}

.content-footer .phone, .content-footer .phone a,
.content-footer .mail, .content-footer .mail a {
    color: #fff;
    text-decoration: none;
}

.content-footer .phone,
.contact-block .detail {
    margin-bottom: 12px;
}

.contact-block .detail,
.content-footer .office-line {
    display: flex;
    flex-direction: column;
}

.contact-block .detail {
    font-size: 14px;
}

.content-footer .contact-block .phone {
    margin-bottom: 0;
}

.content-footer .office-line .address,
.contact-block .position {
    font-size: 14px;
}

.contact-block .name {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.content-footer .title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .banner .logo {
        width: 120px;
        height: 46px;
    }

    .content-block {
        padding: 1.5rem 2rem;
    }

    .content-block h1 {
        font-size: 24px;
    }

    .content-footer {
        flex-direction: column;
    }
}