a:hover {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent
}

/* 顶部模块样式 */
.header-container {
    width: 100%;
}

/* 顶部联系信息栏 */
.top-contact-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    background-color: #004494;
    color: #fff;
    font-size: 12px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 5px;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 2px;
}

.language-switcher a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.language-switcher span {
    margin: 0 4px;
    color: rgba(255, 255, 255, 0.5);
}

/* 公司logo和导航 */
.logo-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #fff;
    padding: 6px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 36px;
    /* 顶部联系信息栏高度 */
    left: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 40px;
    width: auto;
}

/* 导航菜单图标 */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #0056b3;
    font-size: 24px;
}

/* 导航菜单 */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    overflow-y: auto;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.menu-close {
    cursor: pointer;
    font-size: 20px;
    color: #666;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    border-bottom: 1px solid #f5f5f5;
}

.nav-item a {
    display: block;
    padding: 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.nav-item.active a {
    color: #0056b3;
    background-color: #f8f9fa;
    border-left: 3px solid #0056b3;
}

/* 遮罩层 */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* 横幅区域 */
.banner-container {
    width: 100%;
    position: relative;
    clear: both;
    margin-top: 90px;
    /* 顶部联系栏高度 + logo导航高度 */
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-desc {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.4;
}

.banner-btns {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    width: 100%;
}

.btn {
    padding: 10px 15px;
    margin: 0;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 45%;
    text-align: center;
}

.btn:first-child {
    margin-right: 25px;
}

.btn-primary {
    background-color: #4a90e2;
    color: #fff;
}

.btn-secondary {
    background-color: rgba(109, 157, 237, 0.3);
    border: 1px solid #fff;
    color: #fff;
}

.btn i {
    margin-left: 5px;
}

/* 通用标题样式 - 可在所有模块复用 */
.pub-section-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding: 0 15px;
}

.pub-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a2b49;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.pub-section-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #1e88e5, #4db6ff);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1.5px;
    box-shadow: 0 1px 3px rgba(30, 136, 229, 0.3);
}

.pub-section-title:before {
    content: '';
    position: absolute;
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(30, 136, 229, 1), transparent);
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
}

.pub-section-desc {
    font-size: 15px;
    color: #5a6b87;
    line-height: 1.7;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

/* 核心优势模块 */
.core-advantages {
    background: linear-gradient(to bottom, #f7f9fc, #fff);
    position: relative;
    overflow: hidden;
}

.core-advantages:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.03) 0%, rgba(30, 136, 229, 0) 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 0;
}

.core-advantages__items {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.core-advantages__item {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.core-advantages__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.core-advantages__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #1e88e5, #4db6ff);
    border-radius: 3px 0 0 3px;
}

.core-advantages__item-content {
    display: flex;
    align-items: flex-start;
}

.core-advantages__item-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f7ff, #e1f0ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
}

.core-advantages__item-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(30, 136, 229, 0.4);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.core-advantages__item-icon i {
    font-size: 26px;
    color: #1e88e5;
}

.core-advantages__item-text {
    flex: 1;
    text-align: left;
}

.core-advantages__item-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a2b49;
    margin-bottom: 10px;
    position: relative;
}

.core-advantages__item:hover .core-advantages__item-title {
    color: #1e88e5;
}

.core-advantages__item-desc {
    font-size: 14px;
    color: #5a6b87;
    line-height: 1.6;
}

/* 平板和桌面端响应式 */
@media (min-width: 768px) {
    .core-advantages__items {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-left: -10px;
        margin-right: -10px;
    }

    .core-advantages__item {
        width: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
}

.product {
    background-color: #fff;
    position: relative;
}

.product__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product__item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product__content {
    padding: 20px;
}

.product__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a2b49;
    margin-bottom: 12px;
}

.product__desc {
    font-size: 14px;
    color: #5a6b87;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product__features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.product__feature {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #5a6b87;
}

.product__feature:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e88e5;
    font-weight: bold;
}

/* 平板和桌面端响应式 */
@media (min-width: 768px) {
    .product__items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .product__item {
        flex: 0 0 calc(50% - 10px);
    }
}

.success-case {
    background-color: #f8f9fa;
    position: relative;
}

.success-case__items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
}

.success-case__item {
    flex: 0 0 calc(50% - 14px);
    margin: 0 7px 20px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.success-case__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.success-case__img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.success-case__content {
    padding: 12px;
}

.success-case__title {
    font-size: 14px;
    font-weight: 600;
    color: #1a2b49;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 36px;
}

.success-case__desc {
    font-size: 12px;
    color: #5a6b87;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 54px;
}

.success-case__location {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #5a6b87;
}

.success-case__location i {
    color: #1e88e5;
    margin-right: 4px;
    font-size: 14px;
}

.success-case__more {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 12px;
    color: #1e88e5;
    display: flex;
    align-items: center;
}

.success-case__more i {
    margin-left: 3px;
    font-size: 14px;
}

@media (min-width: 600px) {
    .success-case__img {
        height: 150px;
    }

    .success-case__content {
        padding: 15px;
    }

    .success-case__title {
        font-size: 16px;
        height: 42px;
    }

    .success-case__desc {
        font-size: 13px;
    }
}

.partners__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -5px 0;
}

.partners__item {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partners__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    height: 70px;
}

.partners__logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partners__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partners__item:hover .partners__logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (min-width: 480px) {
    .partners__item {
        width: calc(33.33% - 10px);
    }
}

@media (min-width: 600px) {
    .partners__logo {
        height: 80px;
    }

    .partners__logo img {
        max-height: 70px;
    }
}

.partners__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -5px 0;
}

.partners__item {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partners__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    height: 70px;
}

.partners__logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partners__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partners__item:hover .partners__logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (min-width: 480px) {
    .partners__item {
        width: calc(33.33% - 10px);
    }
}

@media (min-width: 600px) {
    .partners__logo {
        height: 80px;
    }

    .partners__logo img {
        max-height: 70px;
    }
}

/* Solutions Grid Styles */
.solutions__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -5px 0;
}

.solutions__item {
    width: 100%;
    margin: 0 5px 10px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.solutions__image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 8px;
}

.solutions__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solutions__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 8px 5px;
    font-size: 14px;
    font-weight: 500;
}

.solutions__item:hover .solutions__image {
    transform: scale(1.05);
}

@media (min-width: 375px) {
    .solutions__item {
        width: calc(50% - 10px);
    }
}

@media (min-width: 800px) {
    .solutions__item {
        width: calc(33.33% - 10px);
    }

    .solutions__caption {
        font-size: 15px;
        padding: 10px 5px;
    }

    .solutions__image-wrapper {
        height: 285px;
    }
}

/* Partners Styles */
.partners__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -5px 0;
}

.partners__item {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partners__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    height: 70px;
}

.partners__logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partners__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partners__item:hover .partners__logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (min-width: 480px) {
    .partners__item {
        width: calc(33.33% - 10px);
    }
}

@media (min-width: 600px) {
    .partners__logo {
        height: 80px;
    }

    .partners__logo img {
        max-height: 70px;
    }
}

/* Solutions Styles */
.solutions__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -5px 0;
}

.solutions__item {
    width: 100%;
    margin: 0 5px 10px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.solutions__image-wrapper {
    position: relative;
    overflow: hidden;
    height: 130px;
    border-radius: 8px;
}

.solutions__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solutions__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 8px 5px;
    font-size: 14px;
    font-weight: 500;
}

.solutions__item:hover .solutions__image {
    transform: scale(1.05);
}

@media (min-width: 375px) {
    .solutions__item {
        width: calc(50% - 10px);
    }
}

@media (min-width: 750px) {
    .solutions__item {
        width: calc(33.33% - 10px);
    }

    .solutions__caption {
        font-size: 15px;
        padding: 10px 5px;
    }

    .solutions__image-wrapper {
        height: 150px;
    }
}

/* About Us Styles */
.about-us__content {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-us__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-us__text-container {
    padding: 15px;
}

.about-us__title {
    position: relative;
    margin-bottom: 15px;
}

.about-us__title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a2b49;
    margin-bottom: 10px;
}

.about-us__divider {
    width: 40px;
    height: 3px;
    background-color: #1e88e5;
    margin-bottom: 15px;
}

.about-us__text {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6b87;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-us__more {
    text-align: right;
}

.about-us__link {
    display: inline-flex;
    align-items: center;
    color: #1e88e5;
    font-size: 14px;
    font-weight: 500;
}

.about-us__link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.about-us__link:hover i {
    transform: translateX(3px);
}

@media (min-width: 600px) {
    .about-us__image {
        height: 220px;
    }

    .about-us__text-container {
        padding: 20px;
    }

    .about-us__title h3 {
        font-size: 20px;
    }

    .about-us__text {
        font-size: 15px;
    }
}

/* Partners Styles */
.partners__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -5px 0;
}

.partners__item {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partners__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    height: 70px;
}

.partners__logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partners__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partners__item:hover .partners__logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (min-width: 480px) {
    .partners__item {
        width: calc(33.33% - 10px);
    }
}

@media (min-width: 600px) {
    .partners__logo {
        height: 80px;
    }

    .partners__logo img {
        max-height: 70px;
    }
}

/* Solutions Styles */
.solutions__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -5px 0;
}

.solutions__item {
    width: 100%;
    margin: 0 5px 10px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.solutions__image-wrapper {
    position: relative;
    overflow: hidden;
    height: 130px;
    border-radius: 8px;
}

.solutions__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solutions__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 8px 5px;
    font-size: 14px;
    font-weight: 500;
}

.solutions__item:hover .solutions__image {
    transform: scale(1.05);
}

@media (min-width: 375px) {
    .solutions__item {
        width: calc(50% - 10px);
    }
}

@media (min-width: 750px) {
    .solutions__item {
        width: calc(33.33% - 10px);
    }

    .solutions__caption {
        font-size: 15px;
        padding: 10px 5px;
    }

    .solutions__image-wrapper {
        height: 150px;
    }
}

/* About Us Styles */
.about-us__content {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-us__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.about-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-us__text-container {
    padding: 15px;
}

.about-us__title {
    position: relative;
    margin-bottom: 15px;
}

.about-us__title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a2b49;
    margin-bottom: 10px;
}

.about-us__divider {
    width: 40px;
    height: 3px;
    background-color: #1e88e5;
    margin-bottom: 15px;
}

.about-us__text {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6b87;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-us__more {
    text-align: right;
}

.about-us__link {
    display: inline-flex;
    align-items: center;
    color: #1e88e5;
    font-size: 14px;
    font-weight: 500;
}

.about-us__link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.about-us__link:hover i {
    transform: translateX(3px);
}

@media (min-width: 600px) {
    .about-us__image {
        height: 220px;
    }

    .about-us__text-container {
        padding: 20px;
    }

    .about-us__title h3 {
        font-size: 20px;
    }

    .about-us__text {
        font-size: 15px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a2b49;
    color: #fff;
    padding: 30px 15px 15px;
    position: relative;
    margin-top: 30px;
}

.footer__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.footer__line {
    width: 40px;
    height: 3px;
    background-color: #1e88e5;
    margin-bottom: 15px;
}

.footer__contact {
    margin-bottom: 25px;
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #c5d0e6;
}

.footer__contact-item i {
    margin-right: 10px;
    font-size: 16px;
    color: #1e88e5;
    margin-top: 3px;
}

.footer__contact-item span {
    flex: 1;
    line-height: 1.6;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 10px;
    text-align: center;
}

.footer__copyright {
    font-size: 13px;
    color: #8a9bb4;
}

@media (min-width: 600px) {
    .footer__contact-item {
        font-size: 15px;
    }

    .footer__contact-item i {
        font-size: 18px;
    }

    .footer__copyright {
        font-size: 14px;
    }
}