html {
    box-sizing: border-box
}

*,
*:before,
*:after {
    box-sizing: inherit
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    background: #fff;
    color: #333;
    font-size: 17px;
    line-height: 1.6
}

.global-header {
    width: 100%;
    background: #344A5F;
    overflow: hidden;
    height: 46px
}

.global-header .container {
    padding: 0 10px;
    max-width: 1045px;
    margin: 0 auto
}

.global-header p.brand {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin: 8px 2px 0;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #333
}

.page-container {
    width: 100%;
    padding: 0 16px;
    max-width: 1060px;
    margin: 0 auto
}

h1 {
    margin: 10px 0;
    line-height: 1.2;
    color: #17191c;
    font-size: 31px;
    font-weight: 800
}

.by {
    font-size: 13px;
    line-height: 1.4;
    color: #777;
    margin: 0 0 8px
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0
}

.btnn {
    display: block;
    border-radius: 5px;
    padding: 9px 10px;
    font-size: 19px;
    font-weight: 700;
    margin: 6px 0 20px;
    color: #fff;
    text-align: center;
    text-decoration: none
}

.blue {
    background-color: #0078f0;
    box-shadow: 0 5px 0 0 #024f9b
}

.top-advertorial {
    width: 100%;
    text-align: center;
    background-color: #273C51
}

.top-advertorial-text {
    font-size: 17px;
    max-width: 1100px;
    margin: 0 auto;
    color: #d7d7d7
}

@media(max-width:500px) {
    body {
        font-size: 16px
    }
}

.modern-adv * {
    font-family: 'Inter', sans-serif;
}

.modern-adv h1 {
    color: #00695c;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modern-adv h2 {
    color: #004d40;
    margin-top: 2rem;
    font-size: 1.3rem;
}

.modern-adv ul {
    padding-left: 1.2rem;
    list-style: none;
}

.modern-adv ul li::before {
    content: "✅ ";
    margin-right: 0.3rem;
}

.modern-adv ul li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.modern-adv .cta-box-highlight {
    background: #00796b;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 2rem 0;
    color: #fff;
}

.modern-adv .cta-box-highlight p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.modern-adv .cta-box-highlight a {
    background: #ffcc80;
    color: #004d40;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.cta-pulse {
    border: 2px solid #00796b;
    padding: 18px;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-weight: 600;
    font-size: 1rem;
    color: #004d40;
    text-align: center;
    animation: pulse 2s infinite;
}