/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

/* 公共样式 */
.clear {
    clear: both;
}

.Center, .Cntr {
    width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .Center, .Cntr {
        width: 90%;
    }
}

/* 占位符样式 */
.placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0e0e0;
    color: #666;
    font-size: 16px;
    font-weight: bold;
    min-height: 200px;
    text-align: center;
}

/* 布局框架 */
.DesignHolder {
    width: 100%;
    overflow: hidden;
}

.LayoutFrame {
    width: 100%;
    background-color: #fff;
}

/* 头部样式 */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header .Center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.site-logo h1 {
    font-size: 35px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
}

.site-logo h1 a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-logo h1 a:hover {
    color: #0052a3;
    transform: translateY(-1px);
}

.site-logo h1 span {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-left: 12px;
    opacity: 1;
}

/* 导航样式 */
.Navigation ul {
    display: flex;
    list-style: none;
}

.Navigation ul li {
    margin-left: 40px;
    position: relative;
}

.Navigation ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

.Navigation ul li a:hover {
    color: #0066cc;
}

.Navigation ul li.active a {
    color: #0066cc;
}

.menu-item-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

.Navigation ul li:hover .menu-item-bg {
    width: 100%;
}

.Navigation ul li.active .menu-item-bg {
    width: 100%;
}

/* 轮播图样式 */
.Banner_sec {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(0, 82, 163, 0.9)), url('images/Slider-img1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 150px 0 100px;
    margin-top: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.bannerside .Center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.leftside {
    flex: 1;
    padding-right: 50px;
}

.leftside h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.leftside h3 span {
    color: #ffcc00;
}

.leftside p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.leftside a {
    display: inline-block;
    background-color: #ffcc00;
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.leftside a:hover {
    background-color: #ffd633;
    transform: translateY(-2px);
}

.rightside {
    flex: 1;
    position: relative;
}

#slider {
    list-style: none;
    position: relative;
    height: 400px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#slider li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#slider li:first-child {
    opacity: 1;
}

.Slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.Slider figure {
    margin: 0;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.Slider figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.Slider figure:hover img {
    transform: scale(1.02);
}

.Slider .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
}

.Slider .text .Lorem p {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.Slider .text .Lorem p span {
    color: #ffcc00;
    margin-left: 10px;
}

.Shadow {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    z-index: -1;
}

/* 背景色块 */
.bgcolor {
    height: 50px;
    background-color: #f5f5f5;
}

/* 关于我们样式 */
.About_sec {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.About_sec::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 204, 204, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.About_sec::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 170, 204, 0.05), rgba(0, 221, 204, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.About_sec .Center {
    position: relative;
    z-index: 1;
}

.About_sec h2 {
    text-align: center;
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
}

.About_sec h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00cccc);
    border-radius: 2px;
}

.About_sec p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.Line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00cccc);
    margin: 0 auto 60px;
    border-radius: 2px;
}

/* 标签页样式 */
.Tabside ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 50px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.Tabside ul li {
    margin: 0 5px;
}

.Tabside ul li a {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: #666;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.Tabside ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc, #00cccc);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.Tabside ul li a span {
    position: relative;
    z-index: 1;
}

.Tabside ul li a.activeLink {
    background: linear-gradient(135deg, #0066cc, #00cccc);
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.Tabside ul li a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.Tabside ul li a:hover::before {
    width: 300px;
    height: 300px;
}

.tabcontent {
    display: flex;
    gap: 50px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tabcontent.hide {
    display: none;
}

.TabImage {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 450px;
    position: relative;
}

.TabImage::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 204, 204, 0.1));
    border-radius: 20px;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.TabImage .img1, .TabImage .img2 {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    background-color: #fff;
    position: relative;
}

.TabImage .img1 {
    transform: translateX(-15px);
}

.TabImage .img2 {
    transform: translateX(15px);
}

.TabImage .img1:hover, .TabImage .img2:hover {
    transform: translateY(-8px) translateX(0);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.25);
}

.TabImage figure {
    margin: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    overflow: hidden;
    border-radius: 15px;
    padding: 20px;
}

.TabImage figure img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    max-height: 320px;
    transition: transform 0.7s ease;
    border-radius: 10px;
}

.TabImage figure:hover img {
    transform: scale(1.1) rotate(2deg);
}

.Description {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.Description h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 800;
    position: relative;
    padding-left: 20px;
}

.Description h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 50px;
    background: linear-gradient(180deg, #0066cc, #00cccc);
    border-radius: 2px;
}

.Description h3 span {
    display: block;
    font-size: 18px;
    color: #0066cc;
    font-weight: 600;
    margin-top: 12px;
}

.Description p {
    color: #666;
    margin-bottom: 25px;
    line-height: 2.0;
    font-size: 16px;
    text-align: left;
    max-width: 100%;
}

.Description p:last-child {
    margin-bottom: 0;
}

.Description p .cyan {
    color: #0066cc;
    font-weight: bold;
    font-size: 17px;
    text-shadow: 0 1px 2px rgba(0, 102, 204, 0.1);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .tabcontent {
        flex-direction: column;
        text-align: center;
    }
    
    .TabImage {
        order: 1;
        max-width: 100%;
    }
    
    .Description {
        order: 2;
        padding: 30px 25px;
    }
    
    .Description h3 {
        padding-left: 0;
    }
    
    .Description h3::before {
        display: none;
    }
    
    .Description p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .About_sec {
        padding: 80px 0;
    }
    
    .About_sec h2 {
        font-size: 28px;
    }
    
    .About_sec p {
        font-size: 16px;
    }
    
    .Tabside ul {
        flex-wrap: wrap;
        border-radius: 15px;
    }
    
    .Tabside ul li a {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .TabImage .img1, .TabImage .img2 {
        transform: translateX(0);
    }
    
    .Description h3 {
        font-size: 22px;
    }
    
    .Description h3 span {
        font-size: 16px;
    }
}

/* 服务流程样式 */
.Services_sec {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.Services_sec h2 {
    text-align: center;
    font-size: 30px;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: bold;
}

.Services_sec p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.Serviceside {
    margin-top: 50px;
}

.Serviceside ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    position: relative;
}

/* 连接线样式 */
.Serviceside ul::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #00cccc);
    transform: translateY(-50%);
    z-index: 1;
}

.Serviceside li {
    flex: 1;
    text-align: center;
    margin: 0 15px;
    position: relative;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

/* 步骤图标样式 */
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

/* 使用CSS绘制图标 */
.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* 图标内部线条 */
.service-icon i {
    position: relative;
    z-index: 2;
    display: block;
    width: 30px;
    height: 30px;
}

/* 需求探寻图标 */
.icon-question::before {
    content: '?';
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
    line-height: 30px;
    text-align: center;
}

/* 方案定制图标 */
.icon-design::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid #0088cc;
    border-radius: 3px;
}

.icon-design::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #0088cc;
    border-radius: 50%;
}

/* 落地执行图标 */
.icon-execute::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #00aacc;
}

/* 会后跟踪图标 */
.icon-follow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 12px;
    border: 3px solid #00cccc;
    border-radius: 20px;
    border-bottom-color: transparent;
}

.icon-follow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #00cccc;
    border-radius: 50%;
    margin-top: 8px;
}

.Serviceside li a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Serviceside li h4 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 15px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.Serviceside li p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 10px;
    position: relative;
    z-index: 3;
}

/* 背景颜色 */
.Serviceside li.Development {
    background: linear-gradient(135deg, #0066cc, #0088cc);
    color: #fff;
}

.Serviceside li.Desdin {
    background: linear-gradient(135deg, #0088cc, #00aacc);
    color: #fff;
}

.Serviceside li.Concept {
    background: linear-gradient(135deg, #00aacc, #00cccc);
    color: #fff;
}

.Serviceside li.System {
    background: linear-gradient(135deg, #00cccc, #00ddcc);
    color: #fff;
}

/* 悬停效果 */
.Serviceside li:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.Serviceside li:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.Serviceside li:hover h4 {
    color: #fff;
    transform: translateY(-3px);
}

.Serviceside li:hover p {
    color: #fff;
    opacity: 1;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .Serviceside ul::after {
        display: none;
    }
    
    .Serviceside li {
        margin: 0 10px;
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .Serviceside li h4 {
        font-size: 20px;
    }
    
    .Serviceside li p {
        font-size: 14px;
    }
}

/* 成功案例样式 */
.Pricing_sec {
    padding: 80px 0;
    background-color: #fff;
}

.Pricing_sec h2 {
    text-align: center;
    font-size: 30px;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: bold;
}

.Pricing_sec_title {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.Pricingside {
    margin-top: 50px;
}

.Pricingside ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
}

@media (max-width: 992px) {
    .Pricingside ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .Pricingside ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .Pricingside ul {
        grid-template-columns: 1fr;
    }
}

.Pricingside li {
    background-color: #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.Pricingside li:hover {
    transform: translateY(-5px);
}

.Pricingside li img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 200px;
    background-color: #fff;
}

.Pricingside li span {
    display: block;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #333;
}

.map {
    margin: 50px 0;
    background-color: #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
    height: 400px;
}

.map img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
}

.Pricing_sec h4 {
    text-align: center;
    color: #666;
    margin: 20px 0;
}

.Pricing_sec h3 {
    text-align: center;
    margin: 30px 0;
}

.Pricing_sec h3 a {
    color: #0066cc;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.Pricing_sec h3 a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* 联系我们样式 */
.Contact_sec {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.Get_sec h2 {
    text-align: center;
    font-size: 30px;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: bold;
}

.Get_sec p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.Mid {
    max-width: 600px;
    margin: 0 auto;
}

.Leftside {
    width: 100%;
}

form {
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

fieldset {
    border: none;
}

.field {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.field:focus {
    outline: none;
    border-color: #0066cc;
}

textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    resize: vertical;
    min-height: 150px;
    transition: border-color 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0052a3;
}

/* 表单加载指示器样式 */
.loading-indicator {
    display: inline-block;
    padding: 15px;
    font-size: 16px;
    color: #0066cc;
    font-weight: bold;
    text-align: center;
    width: 100%;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

/* 表单状态消息样式 */
.form-status {
    margin-top: 20px;
    padding: 15px;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* 响应式表单调整 */
@media (max-width: 768px) {
    form {
        padding: 20px;
    }
    
    .loading-indicator, .form-status {
        font-size: 14px;
        padding: 12px;
    }
}

/* 页脚样式 */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    margin-top: 50px;
}

footer .Cntr {
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 14px;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffd633;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .bannerside .Center,
    .tabcontent {
        flex-direction: column;
    }
    
    .leftside {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .Serviceside ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .Serviceside li {
        flex: 0 0 calc(50% - 30px);
        margin: 0 15px 30px;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .site-logo h1 {
        font-size: 20px;
    }
    
    .Navigation ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .Navigation ul li {
        margin-left: 0;
    }
    
    .leftside h3 {
        font-size: 28px;
    }
    
    .Serviceside li {
        flex: 0 0 100%;
        margin: 0 0 30px;
        min-height: 260px;
        padding: 30px 20px;
    }
    
    .Serviceside li h4 {
        font-size: 20px;
    }
    
    .Serviceside li p {
        font-size: 14px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}