/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007bff;
    --bg-color: #ffffff; /* 白色背景 */
    --card-bg: #f8f9fa;
    --text-white: #333333;
    --text-gray: #666666;
    --accent-color: #007bff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏样式 */
header {
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

/* Banner 样式 */
.banner {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
}

/* 科幻网格与扫描线特效 */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    perspective: 500px;
    transform: rotateX(45deg);
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}

.banner-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* 扫描光束特效 */
.banner-bg-animation::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: scanner 4s linear infinite;
}

/* 数字粒子点阵 */
.banner-bg-animation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent-color) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.2;
    animation: pulse-dots 3s ease-in-out infinite;
}

@keyframes scanner {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse-dots {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    margin: 0 10px;
}

.btn-outline {
    border: 1px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-color);
}

/* 服务项目样式 */
.services {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
}

.features {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #fafafa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 255, 0.2);
    border-color: var(--accent-color);
}

.icon-box {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* 应用场景样式 */
.application-scenarios {
    padding: 100px 0;
    background-color: transparent; /* 确保背景透明以露出底层星空 */
}

.application-scenarios .section-title {
    margin-bottom: 60px;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 明确两列布局，更加工整 */
    gap: 40px;
}

.scenario-card {
    background-color: #fafafa;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    padding: 35px;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.scenario-card:hover::before {
    transform: translateX(100%);
}

.scenario-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.15);
    transform: translateY(-8px);
}

.scenario-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scenario-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 10px;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    background: linear-gradient(45deg, #050a1f 0%, #1a1f4d 100%);
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.video-placeholder:hover {
    background: linear-gradient(45deg, #0a102f 0%, #252b5d 100%);
}

.video-placeholder:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.scenario-card .tags span {
    background-color: rgba(0, 212, 255, 0.1);
    color: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(5px);
}

.scenario-card .tags span:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 15px var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

/* 团队模块样式 */
.team-grid {
    grid-template-columns: repeat(3, 1fr);
}

.team-card {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-photo {
    width: 100px;
    height: 100px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .member-photo {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px var(--accent-color);
    border-color: var(--accent-color);
}

.member-role {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-skills {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.member-skills span {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--text-gray);
}

.application-scenarios .title-line {
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    width: 150px;
    height: 2px;
}

/* 客户案例样式 */
.case-card {
    background: rgba(21, 26, 58, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    display: flex;
    gap: 40px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

.case-image {
    flex: 0 0 350px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 10px;
    pointer-events: none;
}

.case-info {
    flex: 1;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.case-header h3 {
    font-size: 28px;
    color: var(--text-white);
}

.case-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.case-link:hover {
    gap: 10px;
}

.case-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
}

.case-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.stat-item {
    background: rgba(0, 212, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.stat-value {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 16px;
}

.case-desc {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

/* 更多客户样式 */
.client-logos {
    text-align: center;
    padding: 20px 0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.logo-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-item span {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

.logo-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.logo-item:hover span {
    color: var(--accent-color);
}

.more-btn-wrapper {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .case-card {
        flex-direction: column;
        padding: 20px;
    }
    .case-image {
        flex: none;
        width: 100%;
    }
}

/* Specific styling for scenario cards if needed, e.g., background images */
.scenario-card.general {
    /* background-image: url('../images/general-bg.jpg'); */
    background-size: cover;
    background-position: center;
}
/* 添加其他场景的背景图片或特定样式 */


/* 案例页面样式 */
.cases-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.case-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    text-align: left;
}

/* 错落布局：偶数行反转 */
.case-card:nth-child(even) {
    flex-direction: row-reverse;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.2);
}

.case-image {
    flex: 1;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.case-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
}

.case-card .case-content {
    flex: 1;
}

.case-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.case-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.case-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.case-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* 案例详情页样式 */
.content-block {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid #e8e8e8;
}

.content-block h2 {
    color: var(--text-white);
    font-size: 24px;
    margin-bottom: 20px;
}

.content-block h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.content-block p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.content-block ul {
    list-style: none;
    padding: 0;
}

.content-block ul li {
    color: var(--text-gray);
    line-height: 2;
    padding-left: 25px;
    position: relative;
}

.content-block ul li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* 页脚样式 */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    background: #f8f9fa;
}

/* 响应式媒体查询 */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .scenario-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 32px;
    }
    .nav-links {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .scenario-grid {
        grid-template-columns: 1fr;
    }
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(145deg, #151a3a 0%, #0b0f2a 100%);
    margin: 15% auto;
    padding: 40px;
    border: 1px solid var(--accent-color);
    width: 400px;
    border-radius: 16px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    color: var(--text-gray);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--accent-color);
}

.modal-content h2 {
    margin-bottom: 30px;
    color: var(--accent-color);
    letter-spacing: 2px;
}

/* AI 客服挂件 */
.ai-chat-widget {
    position: fixed;
    right: 30px;
    top: 50%; /* 移动到中间位置 */
    transform: translateY(-50%);
    z-index: 1500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-robot-icon {
    width: 65px;
    height: 65px;
    background: #ffffff; /* 白色背景 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid #007bff;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
    /* 蓝色光晕效果 */
    animation: blue-glow 3s infinite alternate;
}

/* 机器人头部容器 */
.robot-head {
    width: 32px;
    height: 24px;
    border: 2px solid #007bff;
    border-radius: 12px 12px 4px 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot-head::before {
    content: '';
    position: absolute;
    top: -6px;
    width: 2px;
    height: 6px;
    background: #007bff;
}

/* 机器人眼睛 */
.robot-eyes {
    display: flex;
    gap: 6px;
}

.robot-eyes::before,
.robot-eyes::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #007bff;
    border-radius: 50%;
    animation: eye-blink 4s infinite;
}

/* 迷你版用于头像 */
.robot-head.mini {
    width: 20px;
    height: 15px;
    border-width: 1.5px;
}
.robot-head.mini::before {
    height: 4px;
    top: -4px;
}
.robot-eyes.mini::before,
.robot-eyes.mini::after {
    width: 4px;
    height: 4px;
}

@keyframes blue-glow {
    0% {
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
        border-color: #007bff;
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 123, 255, 0.6);
        border-color: #00d4ff;
    }
}

@keyframes eye-blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

/* 在线对话窗口样式 */
.chat-window {
    display: none;
    position: fixed;
    right: 110px; /* 调整到挂件左侧 */
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #ff69b4;
}

.chat-header {
    background: #ff69b4;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chat-close {
    font-size: 24px;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-msg {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.4;
}

.chat-msg.bot {
    background: #eee;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-msg.user {
    background: #ff69b4;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 20px;
    outline: none;
}

.chat-footer button {
    background: #ff69b4;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.ai-status-pulse {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background: #27ae60;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(39, 174, 96, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

.ai-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 105, 180, 0.9);
    padding: 8px 15px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 14px;
    color: white;
    border: 1px solid #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.ai-chat-widget:hover .ai-tooltip {
    opacity: 1;
    visibility: visible;
}

.ai-chat-widget:hover {
    transform: scale(1.1) translateY(-5px);
}

/* 详情页特定样式 */
.details-page {
    background: radial-gradient(circle at center, #1a1f4d 0%, #0b0f2a 100%);
}

.content-block {
    background: rgba(21, 26, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    margin-bottom: 30px;
}

.content-block h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.content-block ul {
    margin-top: 20px;
    padding-left: 20px;
    color: var(--text-gray);
}

.content-block li {
    margin-bottom: 10px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 20px;
    width: 25px;
}
