/* 同一 class 重复样式已合并，所有 class 原样保留，效果完全不变 */

.popular-products1 {
    position: relative;
    width: 100%;
    padding: 80px 3%;
    background: url('/houjia/images/8fb08372-30ea-4922-8ad4-8f948fc5b52e.webp') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    gap: 4%;
}
.popular-left1{
    flex:0 0 48%;
    position:sticky;
    top:10%;
    display:flex;
    align-items:center;
    min-height:80vh;
}
.sub-title1 {
    font-size: 20px;
    font-weight: 900;
    color: #0F4C81;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.title-lines1{
    display:flex;
    align-items:center;
    gap:0;
    margin:20px 0;
}
.line1{width:35px;height:3px;background:#1a5fb4;}
.line2{width:20px;height:3px;background:#8ab0e7;}
.main-title1{
    font-size:42px;
    font-weight:700;
    word-break:keep-all;
    white-space:normal;
}
.desc1 {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin:35px 0;
    word-break:normal;
    overflow-wrap:normal;
    white-space:normal;
}
.btn-primary1{
    display:inline-block;
    padding:14px 45px;
    background:#007acc;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    border-radius:30px;
    border:none;
    cursor:pointer;
    transition:background 0.3s;
}
.btn-primary1:hover{
    background:#0066aa;
}
.popular-right1 {
    flex: 0 0 48%;
}
.products-grid1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
    align-items: start;
}
.products-grid1 .product-item1:nth-child(2n) {
    margin-top: 80px;
}
.product-item1 {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.product-item1:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.product-img1 {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}
.product-img1 img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.product-overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 95, 180, 0.85);
    opacity: 0;
    transition: all 0.3s ease;
}
.product-title1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.product-img1:hover .product-overlay1,
.product-img1:hover .product-title1 {
    opacity: 1;
}

.product-section2 {
    padding: 60px 3%;
    text-align: center;
}
.product-header2 {
    margin-bottom: 40px;
}
.sub-title2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a5fb4;
    margin-bottom: 5px;
}
.title-lines2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 15px auto;
}
.line12 {
    width: 35px;
    height: 3px;
    background: #1a5fb4;
}
.line22 {
    width: 20px;
    height: 3px;
    background: #8ab0e7;
}
.main-title2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    word-break: keep-all;
}
.product-grid2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    justify-content: center;
}
.product-card2 {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #fff;
    text-align: left;
}
.product-img2{
    position:relative;
    width:100%;
    height:200px;
    overflow:hidden;
    padding:12px;
    background:#fff;
}
.product-img2 img{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(1);
    width:100%;
    height:100%;
    object-fit:contain;
    transition:all .5s ease 0s;
}
.product-card2:hover .product-img2 img{
    transform:translate(-50%,-50%) scale(1.05);
}
.product-info2 {
    padding: 15px;
    position: relative;
}
.product-name2 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
}
.product-name2 a { color: #333; text-decoration: none; }
.learn-more2 {
    color: #ff6a00;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 5px;
}
.icon-arrow2 {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 20px;
    height: 20px;
    background-color: #007acc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-arrow2 svg {
    width: 10px;
    height: 10px;
    fill: #ffffff;
}

.application-section3 {
    width: 100%;
    position: relative;
}
.app-bg3 {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 3%;
    text-align: center;
    z-index: 1;
}
.app-bg3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 38, 66, 0.75);
    z-index: -1;
}
.app-header3 {
    margin-bottom: 60px;
    color: #fff;
    position: relative;
    z-index: 2;
}
.sub-title3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}
.title-lines3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 15px auto;
}
.line13 {
    width: 35px;
    height: 3px;
    background: #fff;
}
.line23 {
    width: 20px;
    height: 3px;
    background: rgba(255,255,255,0.6);
}
.main-title3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    word-break: keep-all;
}
.btn-outline3 {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}
.btn-outline3:hover {
    background: #fff;
    color: #0d2642;
}
.app-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.app-card3 {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    text-align: left;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
    cursor: pointer;
}
.app-card3:hover {
    transform: translateY(-8px);
}
.app-img3 {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}
.app-img3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.app-card3:hover .app-img3 img {
    transform: scale(1.05);
}
.app-info3 {
    padding: 15px;
    position: relative;
}
.app-name3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.icon-arrow3 {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 24px;
    height: 24px;
    background-color: #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-arrow3 svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.about-section4 {
    width: 100%;
}
.about-bg4 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 3%;
}
.about-header4 {
    text-align: center;
    margin-bottom: 80px;
}
.sub-title4 {
    font-size: 22px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 8px;
}
.title-lines4 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 10px auto 20px;
}
.line14 {
    width: 35px;
    height: 3px;
    background: #0056b3;
}
.line24 {
    width: 20px;
    height: 3px;
    background: rgba(0, 86, 179, 0.5);
}
.main-title4 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
}
.about-content4 {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 0 auto 100px;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.about-content4::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 300px;
    height: 300px;
    background-color: #007acc;
    border-radius: 0 80px 0 80px;
    z-index: 0;
}
.about-left4 {
    text-align: left;
}
.since-title4 {
    font-size: 42px;
    font-weight: 700;
    color: #ff6a00;
    margin: 0 0 8px;
}
.company-name4 {
    font-size: 22px;
    font-weight: 600;
    color: #0056b3;
    margin: 0 0 15px;
}
.about-dots4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.dot4 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
}
.arrow4 {
    color: #0056b3;
    font-weight: 700;
}
.about-desc4 {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}
.btn-blue4 {
    display: inline-block;
    padding: 12px 30px;
    background: #007acc;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    transition: background 0.3s;
}
.btn-blue4:hover {
    background: #0056b3;
}
.about-right4 {
    position: relative;
}
.carousel4 {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 0 80px 0 80px;
    margin-right: -30px;
}
.carousel-inner4 {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}
.carousel-item4 {
    flex: 0 0 100%;
    height: 100%;
}
.carousel-item4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-btn4 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.prev4 { left: 10px; }
.next4 { right: 10px; }
.carousel-indicators4 {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.indicator4 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}
.indicator4.active {
    background: #fff;
}
.advantage-section4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom:100px;
}
.advantage-left4 {
    display: flex;
    align-items: center;
}
.advantage-grid4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}
.advantage-card4 {
    min-height: 160px;
    background: #007acc;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}
.advantage-card4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: #ff6a00;
    transition: height 0.4s ease;
    z-index: -1;
}
.advantage-card4:hover::after {
    height: 100%;
}
.advantage-card4::before {
    content: '';
    position: absolute;
    left: 70px;
    top: 20%;
    height: 60%;
    width: 2px;
    background: linear-gradient(to bottom,transparent 0%,#003366 40%,#003366 60%,transparent 100%);
}
.card-icon4 {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon4 img {
    width: 32px;
    height: 32px;
}
.num4 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}
.plus4 {
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: -6px;
    right: -10px;
}
.label4 {
    font-size: 16px;
    margin-top: 8px;
    display: block;
}
.advantage-right4 {
    display: flex;
    align-items: center;
}
.sub-title-adv4 {
    font-size: 18px;
    font-weight: 700;
    color: #0056b3;
    margin: 0 0 8px;
}
.main-title-adv4 {
    font-size: 36px;
    font-weight: 800;
    color: #222;
    margin: 0 0 15px;
}
.adv-desc4 {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}
.adv-list4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}
.adv-item4 {
    display: flex;
    align-items: center;
    gap: 8px;
}
.dot-orange4 {
    color: #ff6a00;
    font-size: 18px;
}

.section5 {
    width: 100%;
    padding: 60px 0;
}
.container5 {
    margin: 0 auto;
    padding: 60px 3%;
}
.title-box5 {
    text-align: center;
    margin-bottom: 80px;
}
.s_title5 {
    font-size: 22px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 10px;
}
.title-line5 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0 auto 15px;
}
.title-line5 hr {
    border: none;
    height: 3px;
}
.line1-5 {
    width: 35px;
    background: #0056b3;
}
.line2-5 {
    width: 20px;
    background: rgba(0, 86, 179, 0.5);
}
.s_desc5 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
}
.blog-wrap5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
    overflow: visible;
}
.blog-left5 {
    width: 100%;
    min-width: 0;
    overflow: visible;
}
.blog-item-left5 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}
.blog-img5 {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.blog-img5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-item-left5:hover .blog-img5 img {
    transform: scale(1.05);
}
.blog-info5 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 35px 30px;
    background: rgba(0, 0, 0, 0.55);
    transition: background 0.4s ease;
    box-sizing: border-box;
}
.blog-item-left5:hover .blog-info5 {
    background: #007acc;
}
.blog-info-line5 {
    width: 30px;
    height: 2px;
    background: #fff;
    margin-bottom: 15px;
    transition: width 0.4s ease;
}
.blog-item-left5:hover .blog-info-line5 {
    width: 50px;
}
.blog-title5 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 200;
    margin: 0 0 10px;
    transition: transform 0.4s ease;
    line-height: 1.3;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: keep-all;
    word-wrap: normal;
    white-space: normal;
}
.blog-title5 a {
    color: #fff;
    text-decoration: none;
    line-height: 1.3;
    vertical-align: baseline;
}
.blog-item-left5:hover .blog-title5 {
    transform: translateX(8px);
}
.blog-meta5 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #fff;
    transition: transform 0.4s ease;
}
.blog-item-left5:hover .blog-meta5 {
    transform: translateX(8px);
}
.meta-icon5 svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}
.blog-desc5 {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.4s ease;
    word-break: keep-all;
    word-wrap: normal;
}
.blog-item-left5:hover .blog-desc5 {
    transform: translateX(8px);
}
.blog-right5 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    overflow: visible;
}
.blog-item-right5 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.blog-item-right5:hover {
    background: #007acc;
}
.blog-date5 {
    text-align: center;
    width: 80px;
    flex-shrink: 0;
    padding-right: 20px;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}
.blog-item-right5:hover .blog-date5 {
    border-color: #ffffff;
}
.date-day5 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #007acc;
    transition: color 0.3s ease;
}
.blog-item-right5:hover .date-day5 {
    color: #ffffff;
}
.date-year5 {
    font-size: 16px;
    margin: 6px 0 0;
    color: #222222;
    transition: color 0.3s ease;
}
.blog-item-right5:hover .date-year5 {
    color: #ffffff;
}
.blog-content5 {
    flex: 1;
    min-width: 0;
}
.blog-subtitle5 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: keep-all;
}
.blog-subtitle5 a {
    color: #222222;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.3;
    vertical-align: baseline;
}
.blog-item-right5:hover .blog-subtitle5 a {
    color: #ffffff;
}
.blog-subdesc5 {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    word-break: keep-all;
    word-wrap: normal;
}
.blog-item-right5:hover .blog-subdesc5 {
    color: rgba(255,255,255,0.85);
}

.section6 {
    position: relative;
    padding: 70px 20px;
    background: url(/houjia/images/a4eb0f51-3f3b-4ef8-90cf-9c0e8452539e.webp) no-repeat center center fixed;
    background-size: cover;
}
.section6::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(20, 80, 150, 0.82);
    z-index: 1;
}
.wrap6 {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.title1-6 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 0 15px;
    letter-spacing: 1px;
}
.title2-6 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 40px;
}
.line-group6 {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
}
.line6 {
    width: 30px; height: 2px;
    background: #fff;
    opacity: 0.8;
    border: none;
}
.line6:last-child {
    width: 20px;
    opacity: 0.4;
}
.form6 {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}
.form-row6 {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}
.input6 {
    padding: 14px 18px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    color: #333;
    min-width: 180px;
}
.input-wrap6, .phone-wrap6 {
    position: relative;
}
.star6 {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff4444;
    font-size: 16px;
    font-weight: bold;
}
.phone-wrap6 {
    display: flex;
    align-items: center;
    gap: 8px;
}
.code6 {
    width: 60px;
    padding: 14px 8px;
    text-align: center;
    border: none;
    border-radius: 6px;
    background: #fff;
    color: #333;
}
.tip6 {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}
.btn6 {
    padding: 12px 35px;
    background: #f8d7da;
    color: #721c24;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 280px;
}
.btn6:hover {
    background: #f5c6cb;
}

@media (max-width:992px){
    .popular-products1{flex-direction:column;padding:30px 3%;gap:20px;}
    .popular-left1{flex:none;width:100%;position:static;min-height:unset;padding:0;margin-bottom:20px;}
    .main-title1{font-size:30px;line-height:1.3;margin-bottom:10px;}
    .desc1{font-size:15px;margin-bottom:20px;}
    .popular-right1{flex:none;width:100%;padding:0;}
    .products-grid1{row-gap:15px;}
    .products-grid1 .product-item1:nth-child(2n){margin-top:0;}

    .product-grid2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .main-title2 {
        font-size: 28px;
    }

    .app-img3 {
        height: 150px;
    }
    .app-grid3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .main-title3 {
        font-size: 28px;
    }
    .app-bg3 {
        padding: 80px 3%;
    }
    .app-header3 {
        margin-bottom: 50px;
    }

    .about-content4,
    .advantage-section4 {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .carousel4 {
        height: 300px;
    }
    .main-title4,
    .main-title-adv4 {
        font-size: 28px;
    }
    .about-content4::before {
        display: none;
    }
    .about-header4{margin-bottom:40px;}
    .about-content4{margin-bottom:40px;}
    .advantage-section4{margin-bottom:0px;}
    .advantage-grid4 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .advantage-card4 {
        min-height: 120px;
        padding: 20px;
        gap: 15px;
    }
    .card-icon4 img {
        width: 28px;
        height: 28px;
    }
    .num4 {
        font-size: 32px;
    }
    .plus4 {
        font-size: 18px;
        top: -4px;
        right: -8px;
    }
    .label4 {
        font-size: 14px;
        margin-top: 6px;
    }
    .advantage-card4::before {
        left: 60px;
    }
    .adv-list4 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .blog-wrap5 {
        grid-template-columns: 1fr;
    }
    .section5 {
        padding: 40px 0;
    }
    .blog-item-left5 {
        height: auto;
    }
    .s_desc5{font-size:18px;}
    .container5{padding:20px 3%;}
    .title-box5{margin-bottom:10px;}
    .blog-title5 {
        font-size: 14px;
        line-height: 1.4;
    }
    .blog-meta5 {
        font-size: 12px;
        gap: 5px;
    }
    .blog-desc5 {
        font-size: 12px;
        line-height: 1.5;
    }

    .form-row6 {
        flex-wrap: wrap;
    }
    .input6 {
        flex: 1;
        min-width: 200px;
    }
    .title2-6 {
        font-size: 24px;
    }
    .btn6 {
        width: 100%;
        max-width: 320px;
    }
}