:root {
    --brand-red: #d63c37;
    --brand-red-deep: #b42724;
    --brand-blue: #2453d4;
    --brand-navy: #171c57;
    --text-main: #1f2533;
    --text-soft: #6d7487;
    --line-color: #e8edf7;
    --bg-panel: #ffffff;
    --shadow-soft: 0 18px 50px rgba(22, 33, 74, 0.08);
    --shadow-card: 0 12px 30px rgba(37, 61, 126, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container-width: 1240px;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-main);
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 240px);
    padding-top: 102px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

a:hover {
    color: var(--brand-red);
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul,
ol {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.container {
    max-width: var(--container-width);
}

.content img,
.single-content img,
.article-body img {
    max-width: 100%;
    height: auto !important;
    border-radius: var(--radius-sm);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 35px rgba(21, 31, 72, 0.08);
    backdrop-filter: blur(14px);
}

.site-topbar {
    background: linear-gradient(90deg, #11183f, #2a3786);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.site-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
}

.site-topbar__meta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-topbar__meta span,
.site-topbar__meta a {
    color: rgba(255, 255, 255, 0.78);
}

.site-topbar__meta i {
    margin-right: 6px;
}

.site-navbar {
    padding: 12px 0;
    background: transparent;
}

.site-navbar .navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 28px;
    padding: 0;
}

.site-logo {
    width: 260px;
    max-width: 58vw;
}

.site-navbar .navbar-toggler {
    border: 0;
    padding: 0;
    color: var(--text-main);
}

.site-navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.site-navbar .navbar-nav {
    align-items: center;
    gap: 4px;
}

.site-navbar .nav-item {
    position: relative;
}

.site-navbar .nav-link {
    position: relative;
    padding: 12px 18px !important;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main) !important;
}

.site-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 4px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-red), #ff8b4a);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.site-navbar .nav-item.active .nav-link,
.site-navbar .nav-link:hover {
    color: var(--brand-red) !important;
}

.site-navbar .nav-item.active .nav-link::after,
.site-navbar .nav-link:hover::after {
    transform: scaleX(1);
}

.site-nav__extra {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 22px;
}

.site-nav__login {
    font-size: 15px;
    font-weight: 600;
}

.site-nav__phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 18px;
    border-left: 1px solid #e7eaf4;
}

.site-nav__phone i {
    color: var(--brand-red);
    font-size: 18px;
}

.site-nav__phone span {
    display: block;
    font-size: 12px;
    color: var(--text-soft);
}

.site-nav__phone strong {
    display: block;
    font-size: 22px;
    line-height: 1.1;
    color: var(--text-main);
}

.hero-swiper {
    border-radius: 0 0 36px 36px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-slide {
    min-height: 360px;
    background: #11183f;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: clamp(360px, 39vw, 560px);
    object-fit: cover;
}

.hero-swiper .swiper-pagination {
    bottom: 22px !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 24px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #47a6ff, #7a21ff);
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.home-section {
    padding: 56px 0;
}

.section-heading {
    margin-bottom: 30px;
    text-align: center;
}

.section-heading span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(37, 83, 212, 0.08);
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-heading h2 {
    margin: 14px 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    color: var(--brand-navy);
}

.section-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.9;
}

.showcase-panel {
    padding: 18px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #f5fbff, #ffffff);
    box-shadow: var(--shadow-soft);
}

.showcase-panel img {
    display: block;
    width: 100%;
    border-radius: calc(var(--radius-lg) - 10px);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-panel);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(65, 88, 160, 0.08);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(37, 61, 126, 0.18);
}

.service-card__media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #edf4ff, #f8fbff);
}

.service-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 34, 87, 0.06), rgba(19, 34, 87, 0));
    pointer-events: none;
}

.service-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card__body {
    padding: 24px;
}

.service-card__body h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-navy);
}

.service-card__body p {
    min-height: 52px;
    margin-bottom: 18px;
    color: var(--text-soft);
    line-height: 1.9;
}

.service-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-red);
    font-weight: 700;
}

.section-action {
    margin-top: 26px;
    text-align: center;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-red), #ff7f48);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 16px 32px rgba(214, 60, 55, 0.22);
}

.btn-main:hover {
    color: #fff;
    transform: translateY(-2px);
}

.news-column-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-panel {
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid rgba(51, 72, 140, 0.08);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.news-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line-color);
}

.news-panel__head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-navy);
}

.news-panel__head a {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-red);
}

.news-panel__list {
    padding: 10px 22px 16px;
}

.news-panel__list li + li {
    border-top: 1px dashed #e7ebf4;
}

.news-panel__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.news-panel__list h4 {
    margin: 0 0 7px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-main);
}

.news-panel__list p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.news-panel__list time {
    flex: none;
    color: #9aa3b7;
    font-size: 13px;
}

.home-entry-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
}

.entry-card {
    height: 100%;
    padding: 30px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #fff, #f7faff);
    border: 1px solid rgba(44, 74, 153, 0.08);
    box-shadow: var(--shadow-card);
}

.entry-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-navy);
}

.entry-card p {
    color: var(--text-soft);
    line-height: 1.9;
}

.entry-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.entry-card__links a {
    padding: 10px 16px;
    border-radius: 999px;
    background: #f3f6fd;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
}

.entry-card__links a:hover {
    background: rgba(214, 60, 55, 0.1);
    color: var(--brand-red);
}

.entry-card__contact li + li {
    margin-top: 12px;
}

.entry-card__contact strong {
    display: inline-block;
    min-width: 72px;
    color: var(--brand-navy);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.team-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(51, 72, 140, 0.08);
    box-shadow: var(--shadow-card);
}

.team-card__media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.team-card__body {
    padding: 18px 16px 20px;
    text-align: center;
}

.team-card__body h3 {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-navy);
}

.team-card__body p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
}

.inner-hero {
    padding: 18px 0 0;
}

.inner-hero__image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    background: linear-gradient(135deg, #dff0ff, #f8fbff);
}

.inner-hero__image img {
    display: block;
    width: 100%;
    height: clamp(230px, 26vw, 420px);
    object-fit: cover;
}

.inner-hero__caption {
    position: absolute;
    left: 40px;
    bottom: 34px;
    max-width: 420px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(26, 40, 93, 0.16);
}

.inner-hero__caption span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--brand-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.inner-hero__caption h1 {
    margin: 0 0 6px;
    font-size: clamp(24px, 3.4vw, 38px);
    font-weight: 700;
    color: var(--brand-navy);
}

.inner-hero__caption p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.page-shell {
    padding: 28px 0 64px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--text-soft);
    font-size: 14px;
}

.page-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.side-nav {
    position: sticky;
    top: 126px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(51, 72, 140, 0.08);
}

.side-nav__head {
    padding: 28px 24px 24px;
    background: linear-gradient(135deg, var(--brand-red), #ff8450);
    color: #fff;
}

.side-nav__head span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: .9;
}

.side-nav__head h3 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
}

.side-nav__head p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    opacity: .88;
}

.side-nav__list {
    padding: 12px 0;
}

.side-nav__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 24px;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    border-left: 4px solid transparent;
}

.side-nav__list a + a {
    border-top: 1px solid #f0f3fa;
}

.side-nav__list a.active,
.side-nav__list a:hover {
    color: var(--brand-red);
    background: #fff7f6;
    border-left-color: var(--brand-red);
}

.side-nav__sublist {
    padding: 6px 0 10px 18px;
    background: #fbfcff;
}

.side-nav__sublist a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    border-left-width: 3px;
}

.side-nav__contact {
    padding: 18px 24px 24px;
    border-top: 1px solid #f0f3fa;
    background: #fbfcff;
}

.side-nav__contact p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.8;
}

.side-nav__contact strong {
    display: block;
    margin: 8px 0 4px;
    color: var(--brand-navy);
    font-size: 20px;
}

.content-panel {
    padding: 34px 38px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(51, 72, 140, 0.08);
}

.panel-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-color);
}

.panel-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--brand-navy);
}

.panel-heading p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.panel-heading__meta {
    color: #9aa3b7;
    font-size: 14px;
}

.article-list li + li {
    border-top: 1px dashed #e3e8f4;
}

.article-list__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
}

.article-list__link:hover {
    transform: translateX(6px);
}

.article-list__text h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
    color: var(--text-main);
}

.article-list__text p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.9;
}

.article-list__date {
    flex: none;
    min-width: 102px;
    text-align: right;
    color: #97a0b3;
    font-size: 14px;
}

.article-list__tags {
    margin-top: 12px;
}

.article-list__tags span {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f4f6fb;
    color: #6f7890;
    font-size: 12px;
}

.single-content,
.article-body {
    color: #384054;
    font-size: 16px;
    line-height: 2;
}

.single-content table,
.article-body table {
    width: 100% !important;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 26px;
    color: var(--text-soft);
    font-size: 14px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 320px;
    gap: 30px;
    margin-bottom: 26px;
}

.detail-cover {
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, #edf4ff, #f8fbff);
}

.detail-cover img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.detail-summary {
    padding: 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f7faff, #ffffff);
    border: 1px solid rgba(51, 72, 140, 0.08);
}

.detail-summary h3 {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-navy);
}

.detail-summary__item + .detail-summary__item {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #dfe5f1;
}

.detail-summary__item span {
    display: block;
    margin-bottom: 6px;
    color: #97a0b3;
    font-size: 13px;
}

.detail-summary__item strong {
    color: var(--text-main);
    font-size: 16px;
}

.article-nav {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line-color);
}

.article-nav p {
    margin: 0;
    color: var(--text-soft);
    line-height: 2;
}

.article-nav p + p {
    margin-top: 8px;
}

.pagination-wrap {
    margin-top: 34px;
}

.pagination {
    gap: 8px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    background: #f5f7fc;
    border: 1px solid #e3e8f4;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
}

.pagination .active,
.pagination a:hover,
.pagination span:hover {
    background: linear-gradient(90deg, var(--brand-red), #ff7d49);
    border-color: transparent;
    color: #fff;
}

.empty-state {
    padding: 28px;
    border-radius: 18px;
    background: #f8faff;
    color: var(--text-soft);
    text-align: center;
}

.site-footer {
    margin-top: 30px;
    background: linear-gradient(180deg, #ffffff, #f5f8ff);
    border-top: 1px solid #edf1fa;
}

.footer-values {
    padding: 48px 0 24px;
}

.footer-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.footer-value {
    padding: 24px 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(51, 72, 140, 0.08);
    box-shadow: var(--shadow-card);
}

.footer-value i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(36, 83, 212, 0.08);
    color: var(--brand-blue);
    font-size: 22px;
}

.footer-value h4 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-navy);
}

.footer-value p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.footer-main {
    padding: 20px 0 32px;
}

.footer-main__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
    align-items: start;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.footer-links__group h5 {
    margin-bottom: 14px;
    color: var(--brand-navy);
    font-size: 18px;
    font-weight: 700;
}

.footer-links__group a {
    display: inline-block;
    margin-right: 16px;
    margin-bottom: 10px;
    color: var(--text-soft);
    font-size: 14px;
}

.footer-brand {
    padding: 26px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0d1436, #26357f);
    color: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 42px rgba(26, 35, 82, 0.2);
}

.footer-brand img {
    width: 220px;
    max-width: 100%;
    margin-bottom: 18px;
}

.footer-brand ul {
    margin-bottom: 18px;
}

.footer-brand li + li {
    margin-top: 10px;
}

.footer-brand strong {
    color: #fff;
}

.footer-qrcode {
    margin-top: 16px;
    text-align: center;
}

.footer-qrcode img,
.footer-qrcode .code {
    width: 138px;
    height: 138px;
    margin: 0 auto 10px;
    padding: 8px;
    border-radius: 16px;
    background: #fff;
}

.footer-bottom {
    padding: 18px 0 28px;
    border-top: 1px solid rgba(51, 72, 140, 0.08);
    color: var(--text-soft);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 1199.98px) {
    body {
        padding-top: 88px;
    }

    .site-navbar .navbar-collapse {
        margin-top: 16px;
        padding: 18px;
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow-card);
    }

    .site-navbar .navbar-nav {
        align-items: flex-start;
    }

    .site-navbar .nav-link {
        padding: 10px 0 !important;
    }

    .site-navbar .nav-link::after {
        left: 0;
        right: auto;
        width: 36px;
    }

    .site-nav__extra {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-top: 12px;
        margin-left: 0;
    }

    .site-nav__phone {
        padding-left: 0;
        border-left: 0;
    }

    .page-grid,
    .detail-grid,
    .footer-main__grid,
    .home-entry-grid {
        grid-template-columns: 1fr;
    }

    .news-column-grid,
    .footer-links,
    .footer-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .side-nav {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .service-grid,
    .news-column-grid,
    .footer-values__grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-panel {
        padding: 28px 22px;
    }

    .panel-heading,
    .article-list__link {
        display: block;
    }

    .article-list__date {
        margin-top: 14px;
        text-align: left;
    }

    .inner-hero__caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 80px;
    }

    .site-topbar {
        display: none;
    }

    .site-logo {
        width: 210px;
    }

    .hero-slide img {
        height: 220px;
    }

    .home-section {
        padding: 40px 0;
    }

    .showcase-panel,
    .entry-card,
    .footer-brand,
    .service-card,
    .news-panel,
    .content-panel {
        border-radius: 20px;
    }

    .service-card__media img {
        height: 180px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card__media img {
        height: 320px;
    }

    .side-nav__head h3,
    .section-heading h2,
    .panel-heading h2 {
        font-size: 26px;
    }

    .footer-bottom {
        padding-bottom: 22px;
    }
}
