.container{
    max-width: 1424px;
    padding-inline: 20px;
    margin: 0px auto;
}


.Recognitions-content-block{
    position: relative;
}

.Recognitions-content-block::before{
    position: absolute;
    content: "";
    background-image: url(../images/bg-dots.svg);
    width: 100%;
    height: 230px;
    background-repeat:repeat-x;
    bottom: 0;
    left: 0;
}

.account-detail-section section{
    padding-top: 0px !important;
    background-color: white;
}

.account-detail-section{
    background-color: white;
}

/* SEO content block — shared typography for long-form article pages
   (FreezoneArticle, etc). Content is unique per page, so pages just write
   plain semantic HTML (h2/h3/p/ul/li) inside .seo-content and get styled
   automatically instead of repeating Tailwind classes on every element. */

.seo-content {
    max-width: 1080px;
    margin-inline: auto;
    padding-top: 56px;
}

.seo-content > * + * {
    margin-top: 56px;
}

.seo-content h2 {
    color: #131425;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.28px;
}

@media (min-width: 640px) {
    .seo-content h2 {
        font-size: 28px;
    }
}

.seo-content h3 {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 24px;
}

.seo-content h3:first-child {
    margin-top: 0;
}

.seo-content p {
    color: #666;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 16px;
}

.seo-content h2 + p,
.seo-content h3 + p {
    margin-top: 12px;
}

.seo-content strong {
    color: #1A1A1A;
    font-weight: 500;
}

.seo-content a {
    color: #2E86FF;
    text-decoration: none;
}

.seo-content a:hover {
    text-decoration: underline;
}

.seo-content ul {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding-left: 0;
    list-style: none;
}

.seo-content ul.seo-content-cols-2 {
    row-gap: 12px;
    column-gap: 32px;
}

@media (min-width: 640px) {
    .seo-content ul.seo-content-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.seo-content li {
    position: relative;
    padding-left: 28px;
    color: #666;
    font-size: 14px;
    line-height: 24px;
}

.seo-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 9999px;
    background-color: #EDF5FF;
}

.seo-content li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 7px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #2E86FF;
    border-bottom: 2px solid #2E86FF;
    transform: rotate(-45deg);
}