/* 关于我们页面补充样式 */
.about-history {
    margin-bottom: 80px;
    padding: 60px 0;
    background-color: #f9f9f9;
}

.history-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.about-culture {
    padding: 60px 0;
    margin-bottom: 80px;
}

.culture-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.value-item i {
    font-size: 48px;
    color: #2e8b57;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.about-team {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member h4 {
    padding: 15px;
    text-align: center;
    font-size: 18px;
    color: #333;
    margin: 0;
}

.team-member p {
    padding: 0 15px 20px;
    text-align: center;
    color: #2e8b57;
    margin: 0;
}

/* .member-info样式 */
.member-info h3 {
    font-size: 20px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: bold;
    text-align: center;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    margin: 5px 0;
    text-align: center;
}

/* 产品页面补充样式 */
/* 文章列表样式 - 全新布局 */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .news-sidebar {
        width: 100%;
    }
}

.article-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.article-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-badge:nth-of-type(2) { background-color: #007bff; }
.article-badge:nth-of-type(3) { background-color: #ffc107; }
.article-badge:nth-of-type(4) { background-color: #17a2b8; }
.article-badge:nth-of-type(5) { background-color: #dc3545; }

.article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.4;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #28a745;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.article-meta i {
    margin-right: 5px;
}

.article-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.article-readmore {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2e8b57;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 14px;
    align-self: flex-start;
}

.article-readmore:hover {
    color: #ffffff;
}

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

.article-readmore:hover i {
    transform: translateX(3px);
}

.product-categories {
    margin-bottom: 60px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-tab {
    padding: 12px 30px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background-color: #2e8b57;
    color: #fff;
    border-color: #2e8b57;
}

.product-showcase {
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 15px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background-color: #2e8b57;
    color: #fff;
    border-color: #2e8b57;
}

/* 新闻页面补充样式 */
.news-highlight {
    margin-bottom: 40px;
    padding: 35px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #2e8b57;
    display: flex;
    gap: 30px;
    align-items: center;
}

.news-highlight__image {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-highlight__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-highlight:hover .news-highlight__image img {
    transform: scale(1.05);
}

.news-highlight__content {
    flex: 1;
}

.news-highlight h3 {
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.news-highlight:hover h3 {
    color: #2e8b57;
}

.news-highlight p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* 新闻详情页面特定样式 */
.news-detail {
    /*padding: 30px 0;*/
}

.news-detail__header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.news-detail__title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-detail__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666;
}

.news-detail__content {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.news-detail__content p {
    margin-bottom: 20px;
    text-align: justify;
    text-indent: 2rem;
}

.news-detail__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

.news-detail__content h2,
.news-detail__content h3 {
    margin: 30px 0 15px;
    color: #333;
}

.news-detail__content h2 {
    font-size: 22px;
}

.news-detail__content h3 {
    font-size: 18px;
}

.news-detail__content ul,
.news-detail__content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.news-detail__content li {
    margin-bottom: 10px;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.news-share__text {
    font-size: 14px;
    color: #666;
}

.news-share__icons {
    display: flex;
    gap: 10px;
}

.news-share__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    color: #666;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #e0e0e0;
}

.news-share__icon:hover {
    background-color: #2e8b57;
    color: #fff;
    border-color: #2e8b57;
}

.related-news {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.related-news__title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.related-news__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #2e8b57;
}

.related-news__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.related-news__item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-news__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-news__image {
    height: 160px;
    overflow: hidden;
}

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

.related-news__item:hover .related-news__image img {
    transform: scale(1.1);
}

.related-news__content {
    padding: 15px;
}

.related-news__subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-news__date {
    font-size: 12px;
    color: #999;
}

.news-detail-nav {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 20px;
}

.news-detail-nav__prev,
.news-detail-nav__next {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-detail-nav__prev:hover,
.news-detail-nav__next:hover {
    color: #2e8b57;
}

.news-detail-nav__title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 250px;
}

/* 移动端响应式设计 - 平板设备 (768px - 992px) */
@media (max-width: 992px) {
    .news-content-wrapper {
        flex-direction: column;
    }
    
    .news-main {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .news-sidebar {
        width: 100%;
    }
    
    .related-news__list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .news-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .news-highlight__image {
        width: 100%;
        height: 200px;
    }
}

/* 移动端响应式设计 - 移动设备 (767px及以下) */
@media (max-width: 767px) {
    /* 页面结构调整 */
    .news-detail {
        padding: 0;
    }
    
    /* 标题和元信息 */
    .news-detail__title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .news-detail__meta {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        font-size: 13px;
    }
    
    .news-detail__header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    /* 正文内容 */
    .news-detail__content {
        margin-bottom: 30px;
        line-height: 1.7;
        font-size: 15px;
    }
    
    .news-detail__content p {
        margin-bottom: 15px;
    }
    
    .news-detail__content img {
        margin: 15px 0;
        border-radius: 4px;
    }
    
    .news-detail__content h2 {
        font-size: 20px;
        margin: 25px 0 12px;
    }
    
    .news-detail__content h3 {
        font-size: 17px;
        margin: 20px 0 10px;
    }
    
    .news-detail__content ul,
    .news-detail__content ol {
        margin: 15px 0;
        padding-left: 20px;
    }
    
    /* 上一篇/下一篇导航 */
    .news-detail-nav {
        margin: 20px 0;
        padding: 15px 0;
        flex-direction: column;
        gap: 15px;
    }
    
    .news-detail-nav__prev,
    .news-detail-nav__next {
        font-size: 13px;
        width: 100%;
    }
    
    .news-detail-nav__title {
        max-width: calc(100% - 60px);
    }
    
    /* 分享区域 */
    .news-share {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        margin-bottom: 20px;
        gap: 10px;
    }
    
    .news-share__text {
        font-size: 13px;
    }
    
    .news-share__icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    /* 相关文章 */
    .related-news {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .related-news__title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .related-news__list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .related-news__item {
        display: flex;
        flex-direction: row;
        height: 100px;
        border-radius: 6px;
    }
    
    .related-news__image {
        width: 100px;
        height: 100%;
    }
    
    .related-news__content {
        flex: 1;
        padding: 10px;
    }
    
    .related-news__subtitle {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }
    
    /* 边栏调整 */
    .news-sidebar {
        padding-top: 20px;
    }
    
    .sidebar-section {
        margin-bottom: 25px;
    }
    
    .sidebar-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    /* 内容容器 */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* 新闻高亮调整 */
    .news-highlight {
        padding: 20px;
        gap: 15px;
    }
    
    .news-highlight__image {
        height: 160px;
        border-radius: 6px;
    }
    
    .news-highlight h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* 小屏移动设备优化 (480px及以下) */
@media (max-width: 480px) {
    .news-detail__title {
        font-size: 20px;
    }
    
    .news-detail__content {
        font-size: 14px;
    }
    
    .related-news__item {
        flex-direction: column;
        height: auto;
    }
    
    .related-news__image {
        width: 100%;
        height: 120px;
    }
    
    .news-share__icons {
        width: 100%;
        justify-content: space-between;
    }
    
    .news-share__icon {
        width: 36px;
        height: 36px;
    }
    
    /* 新闻高亮进一步调整 */
    .news-highlight__image {
        height: 140px;
    }
    
    .news-highlight h3 {
        font-size: 16px;
    }
}

/* 工厂页面补充样式 */
.factory-intro {
    padding: 60px 0;
    margin-bottom: 60px;
}

.factory-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.factory-text {
    flex: 1;
}

.factory-text h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.factory-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.factory-image {
    flex: 1;
}

.factory-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.quality-content {
    max-width: 800px;
    margin: 0 auto;
}

.standard-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.standard-item h4 {
    font-size: 18px;
    color: #2e8b57;
    margin-bottom: 10px;
}

.standard-item p {
    color: #666;
    line-height: 1.6;
}

.factory-environment {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.environment-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.environment-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.environment-gallery img:hover {
    transform: scale(1.05);
}

/* 资质荣誉页面补充样式 */
.certificate-overview {
    padding: 60px 0;
    margin-bottom: 60px;
    background-color: #f9f9f9;
}

.certificate-overview h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.certificate-overview p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.iso-certificates,
.product-certificates,
.honor-certificates,
.patents {
    padding: 60px 0;
    margin-bottom: 60px;
}

.iso-certificates h3,
.product-certificates h3,
.honor-certificates h3,
.patents h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.certificate-advantages {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.certificate-advantages h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

/* 联系页面补充样式 */
.contact-info-section {
    padding: 60px 0;
    margin-bottom: 60px;
    background-color: #f9f9f9;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    background-color: #2e8b57;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

/* 使用更具体的选择器避免与style.css冲突 */
.contact-info-item .contact-content {
    flex: 1;
    min-width: 0; /* 防止内容溢出 */
    display: block; /* 覆盖style.css中的flex设置 */
    gap: 0; /* 覆盖style.css中的gap设置 */
    margin-bottom: 0; /* 覆盖style.css中的margin-bottom设置 */
}

.contact-info-item .contact-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info-item .contact-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    word-wrap: break-word;
    white-space: normal;
}

.contact-info-item .contact-content p:last-child {
    margin-bottom: 0;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: #2e8b57;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.contact-content p {
    color: #666;
    margin-bottom: 5px;
}

.contact-form-map {
    padding: 60px 0;
    margin-bottom: 60px;
}

.contact-form-container,
.contact-map-container {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

.contact-form-container h2,
.contact-map-container h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.map-wrapper {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 页面标题区域样式 */
.page-header {
    background-color: #2e8b57;
    color: white;
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(135deg, #2e8b57 0%, #4a9d6e 100%);
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

/* 面包屑导航样式 */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb a {
    color: #2e8b57;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1e6c44;
    text-decoration: underline;
}

.breadcrumb span {
    color: #495057;
    font-weight: 500;
}

.faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-toggle {
    background: none;
    border: none;
    color: #2e8b57;
    font-size: 20px;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fff;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.contact-advantages {
    padding: 60px 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .culture-values,
    .team-members,
    .product-grid,
    .environment-gallery,
    .contact-info-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .factory-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-form-container,
    .contact-map-container {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .culture-values,
    .team-members,
    .product-grid,
    .environment-gallery,
    .contact-info-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .category-tab {
        padding: 7px 30px;
        font-size: 15px;
    }
}