/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

:root {
    --primary-color: #325894;
    --font-primary-color: #17253C;
    --bg-color: #E4ECF4;
}
/* 导航栏样式 */
.navbar {
    background-color: #fff;
    /*transparent;*/
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 0; 
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 38px;
    width: 118px;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-left: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    margin-left: 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e6e6e6;
}

/* 导航条底色 */
.nav-links a.active {
    /*background-color: rgb(35, 55, 233);*/
    color: rgb(35, 55, 233);
    /*//rgb(255, 255, 255);*/
    padding: 8px 16px;
    border-radius: 20px;
}

/* 主横幅样式 */
.banner {
    margin-top: 0;
    width: 100%;
    background-color: #f5f5f5;
}

.banner-image {
    width: 100%;
    height: 1000px;
    display: block;
}

/* 产品类型图标样式 */
.product-types {
    display: flex;
    justify-content: center;
    gap: 6rem;/*产品之间的宽度*/
    padding: 3rem 0;
    background-color: #f5f5f5;  /* 添加灰色背景 */
}

.type-item {
    text-align: center;
}

.type-item img {
    width: 70px;
    height: 100px;
    margin-bottom: 2rem;
}

.type-item span {
    display: block;
    color: #666;
}

/* 产品分类样式 */
.product-category {
    padding: 4rem 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.product-category h2 {
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.category-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10rem;
    margin-bottom: 2rem;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.category-item {
    background: #fff;
    width: 300px;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;

}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 200px;  /* 固定宽度 */
    height: 200px;  /* 固定高度 */
    object-fit: cover;  /* 保持图片比例 */
    border-radius: 5px;
}

.category-item h3 {
    margin-top: 1rem;
    color: #535353;
}

.more-btn {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.more-btn:hover {
    background-color: #0052a3;
}

/* 公司介绍样式 */
.company-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 5%;
    background-color: #f5f5f5;
}

.info-text {
    text-align: left;
    padding-right: 2rem;
}
.info-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #1a2ee7;  /* 添加蓝色字体 */
}
.info-text p {
    margin-bottom: 2rem;
    color: #666;  /* 改为灰色 */
}
.info-image {
    text-align: center;
}

.see-more-btn {
    display: block;
    margin: 2rem auto 0;
    width: fit-content;
    background-color: transparent;
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    grid-column: 1 / -1; /* 使按钮跨越整个网格宽度 */
    text-align: center;
}

.see-more-btn:hover {
    background-color: #0066cc;
    color: #fff;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 为什么选择我们样式 */
.why-choose-us {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.choose-us-content {
   
    flex: 1;
}

.why-choose-us-text {
    flex: 1;
    padding-left: 2rem;
}

.why-choose-us-text h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #1225d3;
}

.why-choose-us-text p {
    margin-top: 1rem;
    color: #7e7f80;
}
.choose-us-content img {
    border-radius: 10px; 
    max-width: 100%;
    height: auto;
}

/* 页脚样式 */
footer {
    background-color: #fff;
    /*#003399;*/
    color: #89909D;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    flex: 1;
    max-width: 1000px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 1rem;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin: 1rem 0; 
    margin-bottom: 1rem;
}

.footer-logo .address {
    font-size: 1.4rem;
    color: #f8f5f5;
    line-height: 1.6;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 2rem;  /* 减小间隙 */
    padding-bottom:15px;
    border-bottom:2px solid #FAFAFC
}

.footer-section {
    margin-right: 1rem;  /* 减小右边距 */
}

.footer-section ul li {
    margin-bottom: 0.5rem;  /* 减小列表项间距 */
}
.footer-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #89909D;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-qr {
    text-align: center;
}

.footer-qr img {
    border-radius: 10px; 
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.footer-qr p {
    /*color: #ccc;*/
    margin-bottom: 0.5rem;
}

.footer-qr .hotline {
    /*font-weight: bold;*/
    /*margin-top: 1rem;*/
}



/* 响应式设计 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-logo {
        text-align: center;
        margin: 0 auto;
    }

    .footer-section {
        text-align: center;
    }

    .nav-links {
        display: none;
    }
    
    .company-info {
        grid-template-columns: 1fr;
    }
    
    .product-types {
        flex-direction: column;
        gap: 2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
}


/* 轮播图样式 */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;

}

.carousel-slide {
    width: 33.3333%;
}

.carousel input[type="radio"] {
    display: none;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 0;
    padding: 0 0 0 20px; /* 添加左边距 */
    text-align: left;
}

.carousel-nav label {
    display: inline-block;
    width: 12px;  /* 默认宽度保持圆形 */
    height: 12px;  /* 默认高度保持圆形 */
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;  /* 默认圆形 */
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#slide1:checked ~ .carousel-nav label:nth-child(1),
#slide2:checked ~ .carousel-nav label:nth-child(2),
#slide3:checked ~ .carousel-nav label:nth-child(3) {
    background-color: #1c2fd6;
    width: 60px;  /* 选中状态宽度增加 */
    height: 12px;  /* 选中状态高度减小 */
    border-radius: 6px;  /* 选中状态变为线条 */
}
#slide1:checked ~ .carousel-slides {
    transform: translateX(0);
}

#slide2:checked ~ .carousel-slides {
    transform: translateX(-33.3333%);
}

#slide3:checked ~ .carousel-slides {
    transform: translateX(-66.6666%);
}
.product-nav-container {
    background-color: #f5f5f5;
    padding: 3rem 0;
    margin: 0 auto;  /* 移除上边距 */
    border-radius: 15px;
    width: 100%;
   
}

.product-nav {
    max-width: 1200px;
    margin: 0 auto;
}

.product-nav .nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.product-nav a {
    background-color: #e0e0e0;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1.2rem;  /* 增大字体大小 */
     border-radius: 20px;
     padding: 0.5rem 2rem;  /* 增加水平内边距来加宽背景 */
     font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif; 
     font-weight: 600; /* 中等加粗 */
     letter-spacing: 0.5px; /* 轻微字母间距 */
}

.product-nav a:hover {
    background-color: #d0d0d0;
}

.product-nav a[href="#phone"] {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif; 
    background-color: #0b15a3;
    color: white;
    border-radius: 20px;
    padding: 0.5rem 2rem;  /* 增加水平内边距来加宽背景 */
    font-weight: 600; /* 中等加粗 */
    letter-spacing: 0.5px; /* 轻微字母间距 */
}
.product-nav a.active {
    background-color: #0b15a3;
    color: white;
}
.video-container {
    max-width: 1200px;
    height: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 8px;
    text-align: center;  /* 让内容居中 */
}

.video-container video {
    width: 80%;
    height: 550px;
    max-width: 1000px;  /* 设置视频最大宽度 */
  
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* 添加阴影效果 */
    margin: 0 auto;  /* 确保视频居中 */
    display: block;  /* 使margin: 0 auto生效 */
}
    .icon-grid-container {
        max-width: 1500px;
        margin: 2rem auto;  /* 减少上下边距 */
        padding: 1rem;  /* 减少内边距 */
        text-align: center;
        background-color: #f5f5f5;  /* 添加灰色背景 */
        border-radius: 20px;  /* 可选：添加圆角 */
    }
    
    .icon-grid {
        display: flex;
    flex-wrap: wrap;
    justify-content: space-around;  /* 改为space-around使间距均匀 */
    gap: 2rem;  /* 增大间距 */
    max-width: 1100px;  /* 限制最大宽度 */
    margin: 0 auto;  /* 居中 */
    }
    
    .icon-item {
        width: 200px;  /* 适当增加宽度 */
        margin: 1rem;  /* 增加外边距 */
        flex: 0 0 auto;  /* 防止项目伸缩 */
    }
    
    .icon-item img {
        width: 100px;  /* 放大图标尺寸 */
        height: 100px;
        margin-bottom: 0.8rem;
    }
    
    .icon-item h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        color: #1225d3;
        font-size: 1.4rem;  /* 放大标题字体 */
        margin-bottom: 0.8rem;
    }
    
    .icon-item p {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.1rem;
        color: #666;
        line-height: 1.5;
    }

.content-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;  /* 加大字体 */
    font-weight: 1200;   /* 加粗 */
    color: #1225d3;
    margin-bottom: 1.5rem;
    text-align: center;  /* 居中 */
    text-transform: uppercase; /* 可选：字母大写 */
    letter-spacing: 1px; /* 可选：字母间距 */
    text-shadow: 
    1px 0 0 currentColor, 
    -1px 0 0 currentColor,
    0 1px 0 currentColor,
    0 -1px 0 currentColor;
}

.content-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}
.content-body p {
    font-weight: 600;  /* 加粗 */
    text-align: center;  /* 居中 */
    font-size: 1.2rem;  /* 加大字体 */
    line-height: 1.2;  /* 增加行高 */
    margin: 0.5rem 0;  /* 调整上下边距 */
    color: #999696;
}
.image-container {
    text-align: center;
    margin: 3rem auto;
    width: 100%;  /* 改为100%宽度 */
    max-width: none;  /* 移除最大宽度限制 */
    padding: 0 5%;  /* 添加左右内边距 */
    background: #eeeeee;
}

.responsive-image {
    width: 100%;
    height: auto;  /* 改为自动高度保持比例 */
    max-height: 850px;  /* 设置最大高度限制 */
    object-fit: contain;  /* 改为contain确保完整显示 */
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}
.dual-content-container {
    
    margin: 3rem auto;
    padding: 2rem;
    background-color: #eeeff1f6;
    border-radius: 8px;
}

.content-group {
    margin-bottom: 3rem;
}

.content-group:last-child {
    margin-bottom: 0;
}

.content-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;  /* 居中 */
}
.content-image {
    text-align: center;
    margin: 1.5rem auto;
}
.content-image img {
  max-width: 80%;
    height: auto;
    display: inline-block;
    border-radius: 8px;
}
.products-banner {
    position: relative;
}

.banner-overlay {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(44, 83, 212);
    max-width: 40%;
}

.banner-title {
    color: #1225d3;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
 
}

.banner-text {
    color: #1225d3;
    font-size: 1.2rem;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);

}
/*about三组产品照片样式*/
.triple-image-container {
    display: flex;
    justify-content: center;
    gap: 15rem; /* 间距4rem */
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.image-group {
    text-align: center;
    width: 30%;
    margin: 0 1rem;  /* 添加额外的左右边距 */
}

.group-image {
    width: 250px;
    max-width: 300px;
    height: 250px; /* 增加照片高度 */
    border-radius: 8px;
    margin-bottom: 1rem;
}

.image-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #b7b8bd;
    font-weight: 600;
    
}

/* About页面横幅标题样式 */
.products-showcase .banner-overlay .banner-title {
    color: #1225d3;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* About页面横幅文本样式 */
.products-showcase .banner-overlay .banner-text {
    color: #1225d3;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 联系页面横幅样式 */
.contact-showcase {
    position: relative;
}

.contact-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto; /* 添加固定高度 */
}

.contact-banner-image {
    width: 100%;
    height: 1000px;
    display: block;
    object-fit: cover; /* 保持图片比例同时填充容器 */
    filter: brightness(0.9) blur(1px) grayscale(70%);; /* 添加朦胧感效果 */
}
.contact-banner-overlay {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: 40%;
}

.contact-banner-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact-banner-text {
    font-size: 1.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 联系页面内容样式 */
.contact-page-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 40px;
}
.contact-page-info {
    width: 50%; /* 设置宽度为45% */
  
}
.contact-page-info h2 {
    font-size: 2.2rem;
   
   
}
.contact-page-info p {
    font-size: 1.2rem;
}
.contact-page-form {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.contact-page-form h2 {
   
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-page-form h4 {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    font-weight: 400; /* 将字重从默认的*/
}
.contact-method {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

.contact-method label {
    margin-left: 8px;
    cursor: pointer;
}
.contact-method input[type="radio"] {
    margin-right: 8px;
}
.contact-page-form p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #7c7979;
}
.info-group-box {
    border: 2.5px solid #8c8c8d;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 500px; /* 确保宽度填满容器 */
}

.info-group-box .info-group {
    margin-left: 30px;
    margin: 0; /* 移除默认外边距 */
    padding: 0; /* 移除默认内边距 */
}

.info-group-box h3 {
    font-size: 1.4rem;
    color: #282829; /* 保持标题颜色一致 */
    margin-bottom: 8px; /* 调整标题与内容间距 */
}
.company-address {
    /*margin-left: 30px;*/
    /*margin-right: 50px;*/
    padding: 6px;
    border-left: 2px ;
}
/* 产品弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;  /* 使用百分比保持响应式 */
    padding: 30px;
    width: 85%;
    max-width: 1000px;
    min-height: 600px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);  /* 新增垂直居中 */
    top: 50%;  /* 新增垂直居中 */
    left: 0;
    right: 0;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-body {
    display: flex;
    gap: 30px;
    flex: 1;  /* 填充剩余空间 */
}

.modal-image-container {
    flex: 1;
    min-width: 400px;  /* 设置图片区域最小宽度 */
}

.modal-image-container img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 15px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 1px solid #ddd;
}

.modal-info {
    flex: 1;
    min-width: 300px;  /* 设置信息区域最小宽度 */
}
.modal-info h2 {
    font-size: 2rem;  /* 字体大小2rem */
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0e0e11;  /* 保持与主色调一致 */
}
.product-description {
    margin-top: 20px;
    line-height: 1.8;
}

.image-group {
    cursor: pointer;
    transition: transform 0.3s;
}

.image-group:hover {
    transform: scale(1.05);
}
.thumbnail {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: all 0.3s;
    margin: 0 5px;
}

.thumbnail:hover {
    border-color: #0b15a3;
    transform: scale(1.1);
}

.thumbnail.active {
    border: 2px solid #0b15a3;
    box-shadow: 0 0 5px rgba(11, 21, 163, 0.5);
}
.title-divider {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px 0;
    width: 100%;
}
/*产品弹窗型号样式*/
.specs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.spec-group {
    display: flex;
    flex-direction: column;
}

.spec-title {
    color: #b7b8bd;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.spec-value {
    font-size: 1.4rem;
    font-weight: 600;
}
.description-wrapper {
    margin-top: 30px;
}

.description-title {
    font-size: 1.6rem;
    margin-bottom: 4px;
    font-size: 1.2rem;
    color: rgb(32, 32, 177);
}

.description-divider {
    margin: 15px 0;
    border: none;
    height: 1px;
    background-color: #e0e0e0;
}

.description-content {
    font-size: 1.3rem;
    margin-top: 20px;
    line-height: 1.6;
    color: #424040;
}
/* 联系页面样式 */
.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-group {
    margin-bottom: 25px;
}

.info-group h3 {
    font-size: 1.3rem;
    color: #1225d3;
    margin-bottom: 8px;
}

.info-group p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    border-radius: 20px; /* 添加圆角效果 */
    display: block;
    width: 200px;  /* 增加宽度 */
    margin: 0 auto; /* 水平居中 */
    padding: 12px 0;
    border-width: 1px; /* 将边框厚度调整为1px */
    font-weight: 600; /* 将字体加粗 */
}

.submit-btn:hover {
    background-color: #0066cc; /* 标准蓝色 */
}
#query-input {
    text-align: left;
    padding: 12px 0 0 12px;
    line-height: 1.2;
    height: 120px;
    resize: none;
    display: block;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    box-sizing: border-box;
}

#query-input::placeholder {
    text-align: left;
    vertical-align: top;
    line-height: 1;
}
.company-map {
    max-width: 1200px;
    margin: 15px auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.company-map iframe {
    border: 0;
    width: 100%;
    height: 600px;
    display: block;
}

#map-placeholder {
    width: 100%;
    height: 600px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

#map-placeholder:hover {
    background-color: #e5e5e5;
}

.map-loading {
    font-size: 1.2rem;
    color: #666;
    padding: 1rem 2rem;
    border: 2px solid #666;
    border-radius: 8px;
    transition: all 0.3s;
}

#map-placeholder:hover .map-loading {
    background-color: #666;
    color: #fff;
}
