        .pcb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .pcb-btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            text-align: center;
        }

        .pcb-btn-primary {
            background: #2a7f3f;
            color: white;
        }

        .pcb-btn-primary:hover {
            background: #1e6b32;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 127, 63, 0.4);
            color: white;
        }

        .pcb-btn-outline {
            border: 1px solid #2a7f3f;
            color: #2a7f3f;
        }

        .pcb-btn-outline:hover {
            background: rgba(42, 127, 63, 0.1);
            transform: translateY(-2px);
            color: green;
        }

        /* Header Styles */
        .pcb-header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }

        .pcb-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .pcb-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pcb-logo-icon {
            color: #2a7f3f;
            font-size: 24px;
        }

        .pcb-logo-text {
            font-size: 22px;
            font-weight: 700;
            color: #2a7f3f;
        }

        .pcb-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .pcb-nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .pcb-nav a:hover {
            color: #2a7f3f;
        }

        .pcb-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #2a7f3f;
            transition: width 0.3s;
        }

        .pcb-nav a:hover::after {
            width: 100%;
        }

        .pcb-header-actions {
            display: flex;
            gap: 15px;
        }

        /* Hero Section */
        .pcb-hero {
            padding: 180px 0 120px;
            background: linear-gradient(rgba(26, 60, 110, 0.85), rgba(42, 127, 63, 0.75)), url('/wp-content/uploads/2025/08/pcba-home.jpg') no-repeat center center;
            position: relative;
            overflow: hidden;
        }

        .pcb-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(42, 127, 63, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 150, 136, 0.1) 0%, transparent 50%);
        }

        .pcb-hero-content {
            position: relative;
            z-index: 1;
        }

        .pcb-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            color: white;
        }

        .pcb-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: white;
            max-width: 800px;
        }

        .pcb-hero-btns {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        /* Section Styles */
        .pcb-section {
            padding: 100px 0;
            position: relative;
        }

        .pcb-section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .pcb-section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            color: #2a7f3f;
        }

        .pcb-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #2a7f3f;
        }

        .pcb-section-subtitle {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Products Section */
        .pcb-products {
            background: #f8f9fa;
        }

        .pcb-products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .pcb-product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid #e0e0e0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 1;
        }

        .pcb-product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(42, 127, 63, 0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: -1;
        }

        .pcb-product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .pcb-product-card:hover::before {
            opacity: 1;
        }

        .pcb-product-img {
            width: 100%;
            object-fit: cover;
            border-bottom: 1px solid #e0e0e0;
            height: 280px;
        }

        .pcb-product-content {
            padding: 25px;
        }

        .pcb-product-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #2a7f3f;
        }

        .pcb-product-desc {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        /* About Section */
        .pcb-about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .pcb-video-container {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 315px;
        }

        .pcb-video-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .pcb-about-text h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #2a7f3f;
        }

        .pcb-about-text p {
            margin-bottom: 15px;
            color: #555;
        }

        /* Advantages Section */
        .pcb-advantages {
            background: #f8f9fa;
        }

        .pcb-advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .pcb-advantage-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .pcb-advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(42, 127, 63, 0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .pcb-advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .pcb-advantage-card:hover::before {
            opacity: 1;
        }

        .pcb-advantage-icon {
            font-size: 2.5rem;
            color: #2a7f3f;
            margin-bottom: 20px;
        }

        .pcb-advantage-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #2a7f3f;
        }

        .pcb-advantage-list {
            list-style: none;
        }

        .pcb-advantage-list li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            color: #555;
        }

        .pcb-advantage-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2a7f3f;
            font-weight: bold;
        }

        /* Certificates Section */
        .pcb-certificates {
            background: #2a7f3f;
            color: white;
        }

        .pcb-certificates .pcb-section-title {
            color: white;
        }

        .pcb-certificates .pcb-section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .pcb-certificates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .pcb-certificate-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .pcb-certificate-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .pcb-certificate-img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .pcb-certificate-title {
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Stats Section */
        .pcb-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .pcb-stat-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .pcb-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(42, 127, 63, 0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .pcb-stat-card:hover::before {
            opacity: 1;
        }

        .pcb-stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #2a7f3f;
            margin-bottom: 10px;
            display: block;
        }

        /* Blog Section */
        .pcb-blog {
            background: #f8f9fa;
        }

        .pcb-blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .pcb-blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .pcb-blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .pcb-blog-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .pcb-blog-content {
            padding: 25px;
        }

        .pcb-blog-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #2a7f3f;
        }

        .pcb-blog-excerpt {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .pcb-blog-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.9rem;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        /* Contact Section */
        .pcb-contact {
            text-align: center;
        }

        .pcb-contact p {
            max-width: 700px;
            margin: 0 auto 40px;
            color: #666;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .pcb-about-content {
                grid-template-columns: 1fr;
            }
            
            .pcb-nav ul {
                gap: 15px;
            }
            
            .pcb-hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .pcb-header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .pcb-nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .pcb-hero h1 {
                font-size: 2.2rem;
            }
            
            .pcb-section-title {
                font-size: 2rem;
            }
            
            .pcb-hero-btns {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 576px) {
            .pcb-products-grid,
            .pcb-advantages-grid,
            .pcb-certificates-grid,
            .pcb-stats-grid,
            .pcb-blog-grid {
                grid-template-columns: 1fr;
            }
            
            .pcb-hero {
                padding: 150px 0 80px;
            }
            
            .pcb-section {
                padding: 70px 0;
            }
        }
        
        
        
        /* 主容器 */
        .flex-pcb-container-1200 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 横幅部分 */
        .flex-pcb-banner-advanced {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 100, 80, 0.8) 0%, rgba(0, 70, 50, 0.9) 100%), url('https://www.topfastpcba.ru/wp-content/uploads/2025/08/pcba-home.jpg') center/cover no-repeat;
            overflow: hidden;
        }
        
        .flex-pcb-banner-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 150, 120, 0.3) 0%, transparent 70%);
        }
        
        .flex-pcb-banner-content-advanced {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .flex-pcb-banner-title-advanced {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            color: white;
        }
        
        .flex-pcb-banner-text-advanced {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .flex-pcb-banner-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .flex-pcb-banner-button-advanced::before {
            content: '';
            position: absolute;

            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .flex-pcb-banner-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .flex-pcb-banner-button-advanced:hover::before {
            left: 100%;
        }
        
        /* 介绍部分 */
        .flex-pcb-intro-advanced {
            padding: 100px 0;
            background: #f8fcfb;
            position: relative;
        }
        
        .flex-pcb-intro-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%2300c896" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
            background-size: 200px 200px;
        }
        
        .flex-pcb-intro-inner-advanced {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .flex-pcb-intro-content-advanced {
            flex: 1;
        }
        
        .flex-pcb-intro-title-advanced {
            font-size: 2.5rem;
            color: #003d2d;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        
        .flex-pcb-intro-text-advanced {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #4a665e;
            margin-bottom: 2rem;
        }
        
        .flex-pcb-features-grid-advanced {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 2.5rem;
        }
        
        .flex-pcb-feature-chip-advanced {
            display: flex;
            align-items: center;
            background: white;
            padding: 12px 20px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 100, 80, 0.08);
            transition: all 0.3s ease;
        }
        
        .flex-pcb-feature-chip-advanced:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 100, 80, 0.12);
        }
        
        .flex-pcb-feature-icon-advanced {
            background: #00c896;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 0.9rem;
        }
        
        .flex-pcb-intro-media-advanced {
            flex: 1;
            position: relative;
        }
        
        .flex-pcb-intro-image-advanced {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
        }
        
        .flex-pcb-intro-image-advanced:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        /* 优势部分 */
        .flex-pcb-benefits-advanced {
            padding: 100px 0;
            background: white;
        }
        
        .flex-pcb-benefits-inner-advanced {
            display: flex;
            gap: 60px;
            align-items: center;
        }
        
        .flex-pcb-benefits-media-advanced {
            flex: 1;
            position: relative;
        }
        
        .flex-pcb-benefits-badge-advanced {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .flex-pcb-benefits-image-advanced {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .flex-pcb-benefits-content-advanced {
            flex: 1;
        }
        
        .flex-pcb-benefits-title-advanced {
            font-size: 2.2rem;
            color: #003d2d;
            margin-bottom: 2.5rem;
            line-height: 1.3;
        }
        
        .flex-pcb-benefits-list-advanced {
            list-style: none;
        }
        
        .flex-pcb-benefit-item-advanced {
            display: flex;
            margin-bottom: 2rem;
            padding: 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            background: #f8fcfb;
        }
        
        .flex-pcb-benefit-item-advanced:hover {
            background: white;
            box-shadow: 0 5px 20px rgba(0, 100, 80, 0.08);
            transform: translateY(-3px);
        }
        
        .flex-pcb-benefit-icon-advanced {
            background: #00c896;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            font-weight: bold;
        }
        
        .flex-pcb-benefit-content-advanced h3 {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 0.5rem;
        }
        
        .flex-pcb-benefit-content-advanced p {
            color: #4a665e;
            line-height: 1.6;
        }
        
        .flex-pcb-benefits-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        
        .flex-pcb-benefits-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        /* 材料表格部分 */
        .flex-pcb-materials-advanced {
            padding: 100px 0;
            background: #f8fcfb;
        }
        
        .flex-pcb-materials-header-advanced {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .flex-pcb-materials-title-advanced {
            font-size: 2.5rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .flex-pcb-materials-subtitle-advanced {
            font-size: 1.1rem;
            color: #4a665e;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .flex-pcb-materials-table-container-advanced {
            overflow-x: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .flex-pcb-materials-table-advanced {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        
        .flex-pcb-materials-table-advanced th {
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .flex-pcb-materials-table-advanced td {
            padding: 18px 15px;
            border-bottom: 1px solid #e8f5f2;
        }
        
        .flex-pcb-materials-table-advanced tr:nth-child(even) {
            background: #f8fcfb;
        }
        
        .flex-pcb-materials-table-advanced tr:hover {
            background: #e8f5f2;
        }
        
        .flex-pcb-materials-footer-advanced {
            text-align: center;
            margin-top: 2rem;
            color: #4a665e;
            font-style: italic;
        }
        
        /* 合作伙伴部分 */
        .flex-pcb-partner-advanced {
            padding: 100px 0;
            background: white;
        }
        
        .flex-pcb-partner-content-advanced {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .flex-pcb-partner-title-advanced {
            font-size: 2.5rem;
            color: #003d2d;
            margin-bottom: 1.5rem;
        }
        
        .flex-pcb-partner-intro-advanced {
            font-size: 1.1rem;
            color: #4a665e;
            line-height: 1.7;
            margin-bottom: 3rem;
        }
        
        .flex-pcb-benefits-list-partner-advanced {
            text-align: left;
            margin-bottom: 3rem;
        }
        
        .flex-pcb-benefit-item-partner-advanced {
            background: #f8fcfb;
            padding: 20px;
            margin-bottom: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid #00c896;
            transition: all 0.3s ease;
        }
        
        .flex-pcb-benefit-item-partner-advanced:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0, 100, 80, 0.08);
            transform: translateX(5px);
        }
        
        .flex-pcb-benefit-item-partner-advanced strong {
            color: #003d2d;
        }
        
        .flex-pcb-partner-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .flex-pcb-partner-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        /* FAQ部分 */
        .flex-pcb-faq-advanced {
            padding: 100px 0;
            background: #f8fcfb;
        }
        
        .flex-pcb-faq-title-advanced {
            font-size: 2.2rem;
            color: #003d2d;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .flex-pcb-accordion-advanced {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .flex-pcb-accordion-item-advanced {
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 100, 80, 0.08);
            background: white;
        }
        
        .flex-pcb-accordion-header-advanced {
            width: 100%;
            padding: 20px 25px;
            background: white;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: #003d2d;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .flex-pcb-accordion-header-advanced:hover {
            background: #f8fcfb;
        }
        
        .flex-pcb-accordion-icon-advanced {
            font-size: 1.5rem;
            color: #00c896;
            transition: transform 0.3s ease;
        }
        
        .flex-pcb-accordion-content-advanced {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .flex-pcb-accordion-inner-advanced {
            padding: 0 25px 20px;
            color: #4a665e;
            line-height: 1.6;
        }
        
        .flex-pcb-accordion-item-advanced.active .flex-pcb-accordion-content-advanced {
            max-height: 500px;
        }
        
        .flex-pcb-accordion-item-advanced.active .flex-pcb-accordion-icon-advanced {
            transform: rotate(45deg);
        }
        
        /* CTA部分 */
        .flex-pcb-cta-advanced {
            padding: 100px 0;
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
            text-align: center;
        }
        
        .flex-pcb-cta-content-advanced {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .flex-pcb-cta-title-advanced {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color:white;
        }
        
        .flex-pcb-cta-text-advanced {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .flex-pcb-cta-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .flex-pcb-cta-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .flex-pcb-intro-inner-advanced,
            .flex-pcb-benefits-inner-advanced {
                flex-direction: column;
            }
            
            .flex-pcb-banner-title-advanced {
                font-size: 2.8rem;
            }
            
            .flex-pcb-intro-title-advanced,
            .flex-pcb-benefits-title-advanced,
            .flex-pcb-materials-title-advanced,
            .flex-pcb-partner-title-advanced,
            .flex-pcb-cta-title-advanced {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .flex-pcb-banner-advanced {
                height: 500px;
            }
            
            .flex-pcb-banner-title-advanced {
                font-size: 2.2rem;
            }
            
            .flex-pcb-features-grid-advanced {
                grid-template-columns: 1fr;
            }
            
            .flex-pcb-materials-table-advanced {
                font-size: 0.9rem;
            }
        }  
        
        
        /* 主容器 */
        .rigid-pcb-container-1200 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 横幅部分 */
        .rigid-pcb-banner-advanced {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 100, 80, 0.8) 0%, rgba(0, 70, 50, 0.9) 100%), url('https://www.topfastpcba.ru/wp-content/uploads/2025/08/pcba-home.jpg') center/cover no-repeat;
            overflow: hidden;
        }
        
        .rigid-pcb-banner-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 150, 120, 0.3) 0%, transparent 70%);
        }
        
        .rigid-pcb-banner-content-advanced {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .rigid-pcb-banner-title-advanced {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .rigid-pcb-banner-text-advanced {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .rigid-pcb-banner-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .rigid-pcb-banner-button-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .rigid-pcb-banner-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .rigid-pcb-banner-button-advanced:hover::before {
            left: 100%;
        }
        
        /* 优势部分 */
        .rigid-pcb-advantages-advanced {
            padding: 100px 0;
            background: #f8fcfb;
            position: relative;
        }
        
        .rigid-pcb-advantages-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%2300c896" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
            background-size: 200px 200px;
        }
        
        .rigid-pcb-advantages-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            color: #003d2d;
            margin-bottom: 3rem;
        }
        
        .rigid-pcb-advantages-grid-advanced {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .rigid-pcb-advantage-card-advanced {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .rigid-pcb-advantage-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .rigid-pcb-advantage-img-advanced {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .rigid-pcb-advantage-content-advanced {
            padding: 25px;
        }
        
        .rigid-pcb-advantage-heading-advanced {
            font-size: 1.4rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .rigid-pcb-advantage-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        .rigid-pcb-advantages-button-advanced {
            display: block;
            margin: 0 auto;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
            text-align: center;
            width: fit-content;
        }
        
        .rigid-pcb-advantages-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        /* 特点部分 */
        .rigid-pcb-features-advanced {
            padding: 100px 0;
            background: white;
        }
        
        .rigid-pcb-features-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            color: #003d2d;
            margin-bottom: 3rem;
        }
        
        .rigid-pcb-features-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .rigid-pcb-feature-item-advanced {
            text-align: center;
            padding: 30px 20px;
            background: #f8fcfb;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .rigid-pcb-feature-item-advanced:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0, 100, 80, 0.08);
            transform: translateY(-5px);
        }
        
        .rigid-pcb-feature-icon-advanced {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
        }
        
        .rigid-pcb-feature-heading-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .rigid-pcb-feature-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 材料部分 */
        .rigid-pcb-materials-advanced {
            padding: 100px 0;
            background: #f8fcfb;
        }
        
        .rigid-pcb-materials-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            color: #003d2d;
            margin-bottom: 3rem;
        }
        
        .rigid-pcb-materials-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 4rem;
        }
        
        .rigid-pcb-material-card-advanced {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .rigid-pcb-material-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .rigid-pcb-material-img-advanced {
            height: 180px;
            background-size: cover;
            background-position: center;
        }
        
        .rigid-pcb-material-content-advanced {
            padding: 25px;
        }
        
        .rigid-pcb-material-heading-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .rigid-pcb-material-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        .rigid-pcb-highlight-advanced {
            display: flex;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .rigid-pcb-highlight-img-advanced {
            flex: 1;
            min-height: 300px;
            background-size: cover;
            background-position: center;
        }
        
        .rigid-pcb-highlight-content-advanced {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .rigid-pcb-highlight-heading-advanced {
            font-size: 1.8rem;
            color: #003d2d;
            margin-bottom: 1.5rem;
        }
        
        .rigid-pcb-highlight-text-advanced {
            color: #4a665e;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .rigid-pcb-highlight-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
            width: fit-content;
        }
        
        .rigid-pcb-highlight-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        /* 类型部分 */
        .rigid-pcb-types-advanced {
            padding: 100px 0;
            background: white;
        }
        
        .rigid-pcb-types-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            color: #003d2d;
            margin-bottom: 3rem;
        }
        
        .rigid-pcb-types-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .rigid-pcb-type-card-advanced {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .rigid-pcb-type-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .rigid-pcb-type-img-advanced {
            height: 180px;
            background-size: cover;
            background-position: center;
        }
        
        .rigid-pcb-type-content-advanced {
            padding: 25px;
        }
        
        .rigid-pcb-type-heading-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .rigid-pcb-type-text-advanced {
            color: #4a665e;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .rigid-pcb-type-list-advanced {
            list-style: none;
            color: #4a665e;
        }
        
        .rigid-pcb-type-list-advanced li {
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
        }
        
        .rigid-pcb-type-list-advanced li::before {
            content: '•';
            color: #00c896;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        /* 流程部分 */
        .rigid-pcb-process-advanced {
            padding: 100px 0;
            background: #f8fcfb;
        }
        
        .rigid-pcb-process-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            color: #003d2d;
            margin-bottom: 3rem;
        }
        
        .rigid-pcb-process-container-advanced {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .rigid-pcb-process-item-advanced {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .rigid-pcb-process-number-advanced {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 30px;
            border-radius: 50%;
        }
        
        .rigid-pcb-process-content-advanced {
            flex: 1;
            padding: 30px 0;
        }
        
        .rigid-pcb-process-content-advanced h3 {
            font-size: 1.4rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .rigid-pcb-process-content-advanced p {
            color: #4a665e;
            line-height: 1.7;
        }
        
        .rigid-pcb-process-img-advanced {
            flex-shrink: 0;
            width: 200px;
            height: 150px;
            background-size: cover;
            background-position: center;
            margin-right: 30px;
            border-radius: 10px;
        }
        
        /* 应用部分 */
        .rigid-pcb-applications-advanced {
            padding: 100px 0;
            background: white;
        }
        
        .rigid-pcb-applications-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            color: #003d2d;
            margin-bottom: 3rem;
        }
        
        .rigid-pcb-applications-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .rigid-pcb-application-card-advanced {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .rigid-pcb-application-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .rigid-pcb-application-img-advanced {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .rigid-pcb-application-content-advanced {
            padding: 25px;
        }
        
        .rigid-pcb-application-heading-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .rigid-pcb-application-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* CTA部分 */
        .rigid-pcb-cta-advanced {
            padding: 100px 0;
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
            text-align: center;
        }
        
        .rigid-pcb-cta-content-advanced {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .rigid-pcb-cta-title-advanced {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .rigid-pcb-cta-text-advanced {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .rigid-pcb-cta-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .rigid-pcb-cta-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .rigid-pcb-advantages-grid-advanced,
            .rigid-pcb-features-grid-advanced,
            .rigid-pcb-materials-grid-advanced,
            .rigid-pcb-types-grid-advanced,
            .rigid-pcb-applications-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .rigid-pcb-highlight-advanced {
                flex-direction: column;
            }
            
            .rigid-pcb-process-item-advanced {
                flex-direction: column;
                text-align: center;
            }
            
            .rigid-pcb-process-number-advanced {
                margin: 20px auto;
            }
            
            .rigid-pcb-process-img-advanced {
                margin: 0 auto 20px;
                width: 90%;
                max-width: 300px;
            }
            
            .rigid-pcb-banner-title-advanced {
                font-size: 2.8rem;
            }
            
            .rigid-pcb-advantages-title-advanced,
            .rigid-pcb-features-title-advanced,
            .rigid-pcb-materials-title-advanced,
            .rigid-pcb-types-title-advanced,
            .rigid-pcb-process-title-advanced,
            .rigid-pcb-applications-title-advanced,
            .rigid-pcb-cta-title-advanced {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .rigid-pcb-banner-advanced {
                height: 500px;
            }
            
            .rigid-pcb-banner-title-advanced {
                font-size: 2.2rem;
            }
            
            .rigid-pcb-advantages-grid-advanced,
            .rigid-pcb-features-grid-advanced,
            .rigid-pcb-materials-grid-advanced,
            .rigid-pcb-types-grid-advanced,
            .rigid-pcb-applications-grid-advanced {
                grid-template-columns: 1fr;
            }
        }        
        
        
        
        /* 主容器 */
        .rigid-flex-pcb-container-1200 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 横幅部分 */
        .rigid-flex-pcb-banner-advanced {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 100, 80, 0.8) 0%, rgba(0, 70, 50, 0.9) 100%), url('https://www.topfastpcba.ru/wp-content/uploads/2025/08/pcba-home.jpg') center/cover no-repeat;
            overflow: hidden;
        }
        
        .rigid-flex-pcb-banner-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 150, 120, 0.3) 0%, transparent 70%);
        }
        
        .rigid-flex-pcb-banner-content-advanced {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .rigid-flex-pcb-banner-title-advanced {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .rigid-flex-pcb-banner-text-advanced {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .rigid-flex-pcb-banner-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .rigid-flex-pcb-banner-button-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .rigid-flex-pcb-banner-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .rigid-flex-pcb-banner-button-advanced:hover::before {
            left: 100%;
        }
        
        /* 通用部分样式 */
        .rigid-flex-pcb-section-advanced {
            padding: 100px 0;
        }
        
        .rigid-flex-pcb-section-light-advanced {
            background: #f8fcfb;
            position: relative;
        }
        
        .rigid-flex-pcb-section-light-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%2300c896" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
            background-size: 200px 200px;
        }
        
        .rigid-flex-pcb-section-dark-advanced {
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
        }
        
        .rigid-flex-pcb-section-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }
        
        .rigid-flex-pcb-section-light-advanced .rigid-flex-pcb-section-title-advanced {
            color: #003d2d;
        }
        
        .rigid-flex-pcb-section-dark-advanced .rigid-flex-pcb-section-title-advanced {
            color: white;
        }
        
        .rigid-flex-pcb-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .rigid-flex-pcb-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .rigid-flex-pcb-button-secondary-advanced {
            background: white;
            color: #003d2d;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .rigid-flex-pcb-button-secondary-advanced:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            color: #003d2d;
        }
        
        .rigid-flex-pcb-button-center-advanced {
            display: block;
            margin: 0 auto;
            text-align: center;
            width: fit-content;
        }
        
        /* 优势部分 */
        .rigid-flex-pcb-advantages-advanced {
            display: flex;
            gap: 60px;
            align-items: center;
            margin-bottom: 3rem;
        }
        
        .rigid-flex-pcb-advantages-list-advanced {
            flex: 1;
            list-style: none;
        }
        
        .rigid-flex-pcb-advantages-list-advanced li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 100, 80, 0.1);
            position: relative;
            padding-left: 30px;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .rigid-flex-pcb-advantages-list-advanced li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00c896;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .rigid-flex-pcb-advantages-image-advanced {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .rigid-flex-pcb-advantages-image-advanced img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .rigid-flex-pcb-advantages-image-advanced:hover img {
            transform: scale(1.05);
        }
        
        /* 特点部分 */
        .rigid-flex-pcb-features-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .rigid-flex-pcb-feature-card-advanced {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px 25px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .rigid-flex-pcb-section-light-advanced .rigid-flex-pcb-feature-card-advanced {
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .rigid-flex-pcb-feature-card-advanced:hover {
            transform: translateY(-5px);
        }
        
        .rigid-flex-pcb-section-light-advanced .rigid-flex-pcb-feature-card-advanced:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .rigid-flex-pcb-section-dark-advanced .rigid-flex-pcb-feature-card-advanced:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        
        .rigid-flex-pcb-feature-card-advanced h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        
        .rigid-flex-pcb-section-light-advanced .rigid-flex-pcb-feature-card-advanced h3 {
            color: #003d2d;
        }
        
        .rigid-flex-pcb-section-dark-advanced .rigid-flex-pcb-feature-card-advanced h3 {
            color: white;
        }
        
        .rigid-flex-pcb-feature-card-advanced p {
            line-height: 1.6;
            opacity: 0.9;
        }
        
        /* 材料部分 */
        .rigid-flex-pcb-materials-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .rigid-flex-pcb-material-item-advanced {
            background: white;
            padding: 30px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #00c896;
        }
        
        .rigid-flex-pcb-material-item-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .rigid-flex-pcb-material-item-advanced h4 {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .rigid-flex-pcb-material-item-advanced p {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 类型部分 */
        .rigid-flex-pcb-types-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .rigid-flex-pcb-type-item-advanced {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px 25px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .rigid-flex-pcb-type-item-advanced:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .rigid-flex-pcb-type-icon-advanced {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
        }
        
        .rigid-flex-pcb-type-item-advanced h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: white;
        }
        
        .rigid-flex-pcb-type-item-advanced p {
            line-height: 1.6;
            opacity: 0.9;
        }
        
        /* 技术参数部分 */
        .rigid-flex-pcb-technical-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .rigid-flex-pcb-technical-item-advanced {
            background: white;
            padding: 40px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .rigid-flex-pcb-technical-item-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .rigid-flex-pcb-technical-value-advanced {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #00c896;
            margin-bottom: 0.5rem;
        }
        
        .rigid-flex-pcb-technical-label-advanced {
            display: block;
            font-size: 1rem;
            color: #4a665e;
            line-height: 1.4;
        }
        
        /* 流程部分 */
        .rigid-flex-pcb-process-steps-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .rigid-flex-pcb-process-step-advanced {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px 25px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
        }
        
        .rigid-flex-pcb-process-step-advanced:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .rigid-flex-pcb-process-number-advanced {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }
        
        .rigid-flex-pcb-process-step-advanced h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: white;
        }
        
        .rigid-flex-pcb-process-step-advanced p {
            line-height: 1.6;
            opacity: 0.9;
        }
        
        /* 应用部分 */
        .rigid-flex-pcb-applications-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .rigid-flex-pcb-application-item-advanced {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .rigid-flex-pcb-application-item-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .rigid-flex-pcb-application-image-advanced {
            height: 150px;
            background-size: cover;
            background-position: center;
        }
        
        .rigid-flex-pcb-application-content-advanced {
            padding: 25px 20px;
        }
        
        .rigid-flex-pcb-application-content-advanced p {
            color: #003d2d;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* CTA部分 */
        .rigid-flex-pcb-cta-advanced {
            padding: 100px 0;
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
            text-align: center;
        }
        
        .rigid-flex-pcb-cta-content-advanced {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .rigid-flex-pcb-cta-title-advanced {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .rigid-flex-pcb-cta-text-advanced {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .rigid-flex-pcb-cta-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .rigid-flex-pcb-cta-button-advanced:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .rigid-flex-pcb-advantages-advanced {
                flex-direction: column;
            }
            
            .rigid-flex-pcb-features-grid-advanced,
            .rigid-flex-pcb-materials-grid-advanced,
            .rigid-flex-pcb-types-grid-advanced,
            .rigid-flex-pcb-technical-grid-advanced,
            .rigid-flex-pcb-process-steps-advanced,
            .rigid-flex-pcb-applications-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .rigid-flex-pcb-banner-title-advanced {
                font-size: 2.8rem;
            }
            
            .rigid-flex-pcb-section-title-advanced,
            .rigid-flex-pcb-cta-title-advanced {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .rigid-flex-pcb-banner-advanced {
                height: 500px;
            }
            
            .rigid-flex-pcb-banner-title-advanced {
                font-size: 2.2rem;
            }
            
            .rigid-flex-pcb-features-grid-advanced,
            .rigid-flex-pcb-materials-grid-advanced,
            .rigid-flex-pcb-types-grid-advanced,
            .rigid-flex-pcb-technical-grid-advanced,
            .rigid-flex-pcb-process-steps-advanced,
            .rigid-flex-pcb-applications-grid-advanced {
                grid-template-columns: 1fr;
            }
        } 
        
        
        /* 主容器 */
        .ceramic-pcb-container-1200 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 横幅部分 */
        .ceramic-pcb-banner-advanced {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 100, 80, 0.8) 0%, rgba(0, 70, 50, 0.9) 100%), url('https://www.topfastpcba.ru/wp-content/uploads/2025/08/pcba-home.jpg') center/cover no-repeat;
            overflow: hidden;
        }
        
        .ceramic-pcb-banner-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 150, 120, 0.3) 0%, transparent 70%);
        }
        
        .ceramic-pcb-banner-content-advanced {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .ceramic-pcb-banner-title-advanced {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .ceramic-pcb-banner-text-advanced {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .ceramic-pcb-banner-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .ceramic-pcb-banner-button-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .ceramic-pcb-banner-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .ceramic-pcb-banner-button-advanced:hover::before {
            left: 100%;
        }
        
        /* 通用部分样式 */
        .ceramic-pcb-section-advanced {
            padding: 100px 0;
        }
        
        .ceramic-pcb-section-light-advanced {
            background: #f8fcfb;
            position: relative;
            color: white;
        }
        
        .ceramic-pcb-section-light-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%2300c896" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
            background-size: 200px 200px;
        }
        
        .ceramic-pcb-section-dark-advanced {
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
        }
        
        .ceramic-pcb-section-pale-advanced {
            background: #f0f9f6;
        }
        
        .ceramic-pcb-section-light-green-advanced {
            background: linear-gradient(135deg, #e8f5f2 0%, #d4ede7 100%);
        }
        
        .ceramic-pcb-section-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }
        
        .ceramic-pcb-section-light-advanced .ceramic-pcb-section-title-advanced,
        .ceramic-pcb-section-pale-advanced .ceramic-pcb-section-title-advanced,
        .ceramic-pcb-section-light-green-advanced .ceramic-pcb-section-title-advanced {
            color: #003d2d;
        }
        
        .ceramic-pcb-section-dark-advanced .ceramic-pcb-section-title-advanced {
            color: white;
        }
        
        .ceramic-pcb-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .ceramic-pcb-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .ceramic-pcb-button-secondary-advanced {
            background: white;
            color: #003d2d;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .ceramic-pcb-button-secondary-advanced:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .ceramic-pcb-button-center-advanced {
            display: block;
            margin: 0 auto;
            text-align: center;
            width: fit-content;
            color: white;
        }
        
        /* 公司介绍部分 */
        .ceramic-pcb-company-advanced {
            display: flex;
            gap: 60px;
            align-items: center;
        }
        
        .ceramic-pcb-company-image-advanced {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .ceramic-pcb-company-image-advanced img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .ceramic-pcb-company-image-advanced:hover img {
            transform: scale(1.05);
        }
        
        .ceramic-pcb-company-content-advanced {
            flex: 1;
        }
        
        .ceramic-pcb-company-text-advanced {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        
        .ceramic-pcb-advantage-list-advanced {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .ceramic-pcb-advantage-item-advanced {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 100, 80, 0.1);
            position: relative;
            padding-left: 30px;
            font-size: 1.1rem;
            line-height: 1.6;
            color: white;
        }
        
        .ceramic-pcb-advantage-item-advanced::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00c896;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* 优势部分 */
        .ceramic-pcb-advantages-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .ceramic-pcb-advantage-card-advanced {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .ceramic-pcb-advantage-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .ceramic-pcb-advantage-icon-advanced {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .ceramic-pcb-advantage-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .ceramic-pcb-advantage-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 材料部分 */
        .ceramic-pcb-materials-grid-advanced {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .ceramic-pcb-material-card-advanced {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .ceramic-pcb-material-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .ceramic-pcb-material-image-advanced {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .ceramic-pcb-material-content-advanced {
            padding: 30px;
        }
        
        .ceramic-pcb-material-title-advanced {
            font-size: 1.4rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .ceramic-pcb-material-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 表格部分 */
        .ceramic-pcb-table-container-advanced {
            overflow-x: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
        }
        
        .ceramic-pcb-data-table-advanced {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        
        .ceramic-pcb-data-table-advanced th {
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .ceramic-pcb-data-table-advanced td {
            padding: 18px 15px;
            border-bottom: 1px solid #e8f5f2;
            color: #4a665e;
        }
        
        .ceramic-pcb-data-table-advanced tr:nth-child(even) {
            background: #f8fcfb;
        }
        
        .ceramic-pcb-data-table-advanced tr:hover {
            background: #e8f5f2;
        }
        
        /* 技术参数表格 */
        .ceramic-pcb-specs-table-advanced {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .ceramic-pcb-specs-table-advanced th {
            background: #f8fcfb;
            color: #003d2d;
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
            border-bottom: 1px solid #e8f5f2;
            width: 40%;
        }
        
        .ceramic-pcb-specs-table-advanced td {
            padding: 18px 15px;
            border-bottom: 1px solid #e8f5f2;
            color: #4a665e;
        }
        
        .ceramic-pcb-specs-table-advanced tr:last-child th,
        .ceramic-pcb-specs-table-advanced tr:last-child td {
            border-bottom: none;
        }
        
        /* 流程部分 */
        .ceramic-pcb-process-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .ceramic-pcb-process-card-advanced {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .ceramic-pcb-process-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .ceramic-pcb-process-number-advanced {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }
        
        .ceramic-pcb-process-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .ceramic-pcb-process-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 应用部分 */
        .ceramic-pcb-applications-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .ceramic-pcb-application-card-advanced {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .ceramic-pcb-application-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .ceramic-pcb-application-icon-advanced {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: #f8fcfb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: 2px solid #e8f5f2;
        }
        
        .ceramic-pcb-application-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .ceramic-pcb-application-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* CTA部分 */
        .ceramic-pcb-cta-advanced {
            padding: 100px 0;
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
            text-align: center;
        }
        
        .ceramic-pcb-cta-content-advanced {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .ceramic-pcb-cta-title-advanced {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .ceramic-pcb-cta-text-advanced {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .ceramic-pcb-cta-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .ceramic-pcb-cta-button-advanced:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .ceramic-pcb-company-advanced {
                flex-direction: column;
            }
            
            .ceramic-pcb-advantages-grid-advanced,
            .ceramic-pcb-process-grid-advanced,
            .ceramic-pcb-applications-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .ceramic-pcb-materials-grid-advanced {
                grid-template-columns: 1fr;
            }
            
            .ceramic-pcb-banner-title-advanced {
                font-size: 2.8rem;
            }
            
            .ceramic-pcb-section-title-advanced,
            .ceramic-pcb-cta-title-advanced {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .ceramic-pcb-banner-advanced {
                height: 500px;
            }
            
            .ceramic-pcb-banner-title-advanced {
                font-size: 2.2rem;
            }
            
            .ceramic-pcb-advantages-grid-advanced,
            .ceramic-pcb-process-grid-advanced,
            .ceramic-pcb-applications-grid-advanced {
                grid-template-columns: 1fr;
            }
        }        
        
        
        /* 主容器 */
        .hf-pcb-container-1200 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 横幅部分 */
        .hf-pcb-banner-advanced {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 100, 80, 0.8) 0%, rgba(0, 70, 50, 0.9) 100%), url('https://www.topfastpcba.ru/wp-content/uploads/2025/08/pcba-home.jpg') center/cover no-repeat;
            overflow: hidden;
        }
        
        .hf-pcb-banner-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 150, 120, 0.3) 0%, transparent 70%);
        }
        
        .hf-pcb-banner-content-advanced {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 0 20px;
            color: white;
        }
        
        .hf-pcb-banner-title-advanced {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .hf-pcb-banner-text-advanced {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .hf-pcb-banner-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .hf-pcb-banner-button-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .hf-pcb-banner-button-advanced:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
            color: white;
        }
        
        .hf-pcb-banner-button-advanced:hover::before {
            left: 100%;
        }
        
        /* 通用部分样式 */
        .hf-pcb-section-advanced {
            padding: 100px 0;
        }
        
        .hf-pcb-section-light-advanced {
            background: #f8fcfb;
            position: relative;
        }
        
        .hf-pcb-section-light-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%2300c896" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
            background-size: 200px 200px;
        }
        
        .hf-pcb-section-dark-advanced {
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
        }
        
        .hf-pcb-section-pale-advanced {
            background: #f0f9f6;
        }
        
        .hf-pcb-section-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .hf-pcb-section-light-advanced .hf-pcb-section-title-advanced,
        .hf-pcb-section-pale-advanced .hf-pcb-section-title-advanced {
            color: #003d2d;
        }
        
        .hf-pcb-section-dark-advanced .hf-pcb-section-title-advanced {
            color: white;
        }
        
        .hf-pcb-section-description-advanced {
            text-align: center;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .hf-pcb-section-light-advanced .hf-pcb-section-description-advanced,
        .hf-pcb-section-pale-advanced .hf-pcb-section-description-advanced {
            color: #4a665e;
        }
        
        .hf-pcb-section-dark-advanced .hf-pcb-section-description-advanced {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .hf-pcb-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .hf-pcb-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .hf-pcb-button-secondary-advanced {
            background: white;
            color: #003d2d;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .hf-pcb-button-secondary-advanced:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .hf-pcb-button-center-advanced {
            display: block;
            margin: 0 auto;
            text-align: center;
            width: fit-content;
        }
        
        /* 为什么选择部分 */
        .hf-pcb-why-advanced {
            display: flex;
            gap: 60px;
            align-items: center;
        }
        
        .hf-pcb-why-content-advanced {
            flex: 1;
        }
        
        .hf-pcb-why-list-advanced {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .hf-pcb-why-item-advanced {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 100, 80, 0.1);
            position: relative;
            padding-left: 30px;
            font-size: 1.1rem;
            line-height: 1.6;
            color: white;
        }
        
        .hf-pcb-why-item-advanced::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00c896;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .hf-pcb-why-image-advanced {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .hf-pcb-why-image-advanced img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .hf-pcb-why-image-advanced:hover img {
            transform: scale(1.05);
        }
        
        /* 优势部分 */
        .hf-pcb-benefits-grid-advanced {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .hf-pcb-benefit-card-advanced {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid #00c896;
        }
        
        .hf-pcb-benefit-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hf-pcb-benefit-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hf-pcb-benefit-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 材料部分 */
        .hf-pcb-materials-grid-advanced {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .hf-pcb-material-card-advanced {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .hf-pcb-material-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hf-pcb-material-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hf-pcb-material-text-advanced {
            color: #4a665e;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .hf-pcb-material-applications-advanced {
            color: #00c896;
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        /* 类型部分 */
        .hf-pcb-types-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .hf-pcb-type-card-advanced {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .hf-pcb-type-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hf-pcb-type-image-advanced {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .hf-pcb-type-content-advanced {
            padding: 30px;
        }
        
        .hf-pcb-type-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hf-pcb-type-desc-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 技术参数表格 */
        .hf-pcb-specs-table-advanced {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .hf-pcb-specs-table-advanced th {
            background: #f8fcfb;
            color: #003d2d;
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
            border-bottom: 1px solid #e8f5f2;
            width: 40%;
        }
        
        .hf-pcb-specs-table-advanced td {
            padding: 18px 15px;
            border-bottom: 1px solid #e8f5f2;
            color: #4a665e;
        }
        
        .hf-pcb-specs-table-advanced tr:last-child th,
        .hf-pcb-specs-table-advanced tr:last-child td {
            border-bottom: none;
        }
        
        .hf-pcb-specs-table-advanced tr:hover {
            background: #f8fcfb;
        }
        
        /* 流程部分 */
        .hf-pcb-process-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .hf-pcb-process-step-advanced {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .hf-pcb-process-step-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hf-pcb-step-number-advanced {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }
        
        .hf-pcb-step-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hf-pcb-step-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 应用部分 */
        .hf-pcb-applications-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .hf-pcb-application-card-advanced {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .hf-pcb-application-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hf-pcb-application-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hf-pcb-application-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* CTA部分 */
        .hf-pcb-cta-advanced {
            padding: 100px 0;
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
            text-align: center;
        }
        
        .hf-pcb-cta-content-advanced {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hf-pcb-cta-title-advanced {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .hf-pcb-cta-text-advanced {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .hf-pcb-cta-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .hf-pcb-cta-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .hf-pcb-why-advanced {
                flex-direction: column;
            }
            
            .hf-pcb-benefits-grid-advanced,
            .hf-pcb-materials-grid-advanced,
            .hf-pcb-types-grid-advanced,
            .hf-pcb-process-grid-advanced,
            .hf-pcb-applications-grid-advanced {
                grid-template-columns: 1fr;
            }
            
            .hf-pcb-banner-title-advanced {
                font-size: 2.8rem;
            }
            
            .hf-pcb-section-title-advanced,
            .hf-pcb-cta-title-advanced {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hf-pcb-banner-advanced {
                height: 500px;
            }
            
            .hf-pcb-banner-title-advanced {
                font-size: 2.2rem;
            }
        }
        
        /* 主容器 */
        .hs-pcb-container-1200 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 横幅部分 */
        .hs-pcb-banner-advanced {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 100, 80, 0.8) 0%, rgba(0, 70, 50, 0.9) 100%), url('https://www.topfastpcba.ru/wp-content/uploads/2025/08/pcba-home.jpg') center/cover no-repeat;
            overflow: hidden;
        }
        
        .hs-pcb-banner-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 150, 120, 0.3) 0%, transparent 70%);
        }
        
        .hs-pcb-banner-content-advanced {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            /*max-width: 800px;*/
            padding: 0 20px;
        }
        
        .hs-pcb-banner-title-advanced {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .hs-pcb-banner-text-advanced {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .hs-pcb-banner-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .hs-pcb-banner-button-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .hs-pcb-banner-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .hs-pcb-banner-button-advanced:hover::before {
            left: 100%;
        }
        
        /* 通用部分样式 */
        .hs-pcb-section-advanced {
            padding: 100px 0;
        }
        
        .hs-pcb-section-light-advanced {
            background: #f8fcfb;
            position: relative;
        }
        
        .hs-pcb-section-light-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%2300c896" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
            background-size: 200px 200px;
        }
        
        .hs-pcb-section-dark-advanced {
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
        }
        
        .hs-pcb-section-white-advanced {
            background: white;
        }
        
        .hs-pcb-section-primary-advanced {
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
        }
        
        .hs-pcb-section-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .hs-pcb-section-light-advanced .hs-pcb-section-title-advanced,
        .hs-pcb-section-white-advanced .hs-pcb-section-title-advanced {
            color: #003d2d;
        }
        
        .hs-pcb-section-dark-advanced .hs-pcb-section-title-advanced,
        .hs-pcb-section-primary-advanced .hs-pcb-section-title-advanced {
            color: white;
        }
        
        .hs-pcb-section-intro-advanced {
            text-align: center;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .hs-pcb-section-light-advanced .hs-pcb-section-intro-advanced,
        .hs-pcb-section-white-advanced .hs-pcb-section-intro-advanced {
            color: #4a665e;
        }
        
        .hs-pcb-section-dark-advanced .hs-pcb-section-intro-advanced,
        .hs-pcb-section-primary-advanced .hs-pcb-section-intro-advanced {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .hs-pcb-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .hs-pcb-button-advanced:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .hs-pcb-button-light-advanced {
            background: white;
            color: #003d2d;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .hs-pcb-button-light-advanced:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            color: #003d2d;
        }
        
        .hs-pcb-button-center-advanced {
            display: block;
            margin: 0 auto;
            text-align: center;
            width: fit-content;
        }
        
        /* 优势部分 */
        .hs-pcb-advantages-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .hs-pcb-advantage-card-advanced {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .hs-pcb-advantage-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hs-pcb-advantage-icon-advanced {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .hs-pcb-advantage-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hs-pcb-advantage-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 材料表格 */
        .hs-pcb-table-container-advanced {
            overflow-x: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
        }
        
        .hs-pcb-material-table-advanced {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        
        .hs-pcb-material-table-advanced th {
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
            white-space: nowrap;
        }
        
        .hs-pcb-material-table-advanced td {
            padding: 18px 15px;
            border-bottom: 1px solid #e8f5f2;
            color: #4a665e;
        }
        
        .hs-pcb-material-table-advanced tr:nth-child(even) {
            background: #f8fcfb;
        }
        
        .hs-pcb-material-table-advanced tr:hover {
            background: #e8f5f2;
        }
        
        /* 图片库 */
        .hs-pcb-image-gallery-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .hs-pcb-gallery-item-advanced {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .hs-pcb-gallery-item-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hs-pcb-gallery-image-advanced {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        
        /* 技术参数 */
        .hs-pcb-subsection-title-advanced {
            font-size: 1.8rem;
            color: #003d2d;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .hs-pcb-params-container-advanced {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
        }
        
        .hs-pcb-params-list-advanced {
            list-style: none;
            columns: 2;
            column-gap: 40px;
        }
        
        .hs-pcb-params-list-advanced li {
            padding: 12px 0;
            border-bottom: 1px solid #e8f5f2;
            position: relative;
            padding-left: 25px;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #4a665e;
            break-inside: avoid;
        }
        
        .hs-pcb-params-list-advanced li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #00c896;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        /* 生产流程 */
        .hs-pcb-production-process-advanced {
            position: relative;
            margin-bottom: 3rem;
        }
        
        .hs-pcb-process-track-advanced {
            position: absolute;
            left: 60px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #00c896, #008c6a);
            border-radius: 2px;
        }
        
        .hs-pcb-process-steps-advanced {
            position: relative;
            z-index: 2;
        }
        
        .hs-pcb-process-step-advanced {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
            position: relative;
        }
        
        .hs-pcb-step-number-advanced {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            margin-right: 30px;
            flex-shrink: 0;
            z-index: 3;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
        }
        
        .hs-pcb-step-content-advanced {
            flex: 1;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .hs-pcb-step-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hs-pcb-step-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 应用部分 */
        .hs-pcb-applications-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .hs-pcb-application-item-advanced {
            background: white;
            padding: 40px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .hs-pcb-application-item-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hs-pcb-application-icon-advanced {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: #f8fcfb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            border: 2px solid #e8f5f2;
        }
        
        .hs-pcb-application-name-advanced {
            font-size: 1.2rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hs-pcb-application-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* CTA部分 */
        .hs-pcb-cta-advanced {
            text-align: center;
        }
        
        .hs-pcb-cta-title-advanced {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .hs-pcb-cta-text-advanced {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hs-pcb-cta-buttons-advanced {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .hs-pcb-advantages-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hs-pcb-applications-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hs-pcb-image-gallery-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hs-pcb-params-list-advanced {
                columns: 1;
            }
            
            .hs-pcb-banner-title-advanced {
                font-size: 2.8rem;
            }
            
            .hs-pcb-section-title-advanced,
            .hs-pcb-cta-title-advanced {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hs-pcb-banner-advanced {
                height: 500px;
            }
            
            .hs-pcb-banner-title-advanced {
                font-size: 2.2rem;
            }
            
            .hs-pcb-advantages-grid-advanced,
            .hs-pcb-applications-grid-advanced,
            .hs-pcb-image-gallery-advanced {
                grid-template-columns: 1fr;
            }
            
            .hs-pcb-process-step-advanced {
                flex-direction: column;
                text-align: center;
            }
            
            .hs-pcb-step-number-advanced {
                margin: 0 auto 20px;
            }
            
            .hs-pcb-process-track-advanced {
                display: none;
            }
        }        
        
        
        /* 主容器 */
        .hdi-pcb-container-1200 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 横幅部分 */
        .hdi-pcb-banner-advanced {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 100, 80, 0.8) 0%, rgba(0, 70, 50, 0.9) 100%), url('https://www.topfastpcba.ru/wp-content/uploads/2025/08/pcba-home.jpg') center/cover no-repeat;
            overflow: hidden;
        }
        
        .hdi-pcb-banner-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 150, 120, 0.3) 0%, transparent 70%);
        }
        
        .hdi-pcb-banner-content-advanced {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hdi-pcb-banner-title-advanced {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .hdi-pcb-banner-text-advanced {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .hdi-pcb-banner-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .hdi-pcb-banner-button-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .hdi-pcb-banner-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .hdi-pcb-banner-button-advanced:hover::before {
            left: 100%;
        }
        
        /* 通用部分样式 */
        .hdi-pcb-section-advanced {
            padding: 100px 0;
        }
        
        .hdi-pcb-section-light-advanced {
            background: #f8fcfb;
            position: relative;
        }
        
        .hdi-pcb-section-light-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%2300c896" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
            background-size: 200px 200px;
        }
        
        .hdi-pcb-section-dark-advanced {
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
        }
        
        .hdi-pcb-section-white-advanced {
            background: white;
        }
        
        .hdi-pcb-section-primary-advanced {
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
        }
        
        .hdi-pcb-section-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .hdi-pcb-section-light-advanced .hdi-pcb-section-title-advanced,
        .hdi-pcb-section-white-advanced .hdi-pcb-section-title-advanced {
            color: #003d2d;
        }
        
        .hdi-pcb-section-dark-advanced .hdi-pcb-section-title-advanced,
        .hdi-pcb-section-primary-advanced .hdi-pcb-section-title-advanced {
            color: white;
        }
        
        .hdi-pcb-section-intro-advanced {
            text-align: center;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .hdi-pcb-section-light-advanced .hdi-pcb-section-intro-advanced,
        .hdi-pcb-section-white-advanced .hdi-pcb-section-intro-advanced {
            color: #4a665e;
        }
        
        .hdi-pcb-section-dark-advanced .hdi-pcb-section-intro-advanced,
        .hdi-pcb-section-primary-advanced .hdi-pcb-section-intro-advanced {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .hdi-pcb-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .hdi-pcb-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .hdi-pcb-button-light-advanced {
            background: white;
            color: #003d2d;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .hdi-pcb-button-light-advanced:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            color: #003d2d;
        }
        
        .hdi-pcb-button-center-advanced {
            display: block;
            margin: 0 auto;
            text-align: center;
            width: fit-content;
            color: white;
        }
        
        /* 优势部分 */
        .hdi-pcb-advantages-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .hdi-pcb-advantage-card-advanced {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .hdi-pcb-advantage-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hdi-pcb-advantage-icon-advanced {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .hdi-pcb-advantage-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hdi-pcb-advantage-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* HDI技术特点 */
        .hdi-pcb-features-advanced {
            display: flex;
            gap: 60px;
            align-items: center;
        }
        
        .hdi-pcb-features-content-advanced {
            flex: 1;
        }
        
        .hdi-pcb-features-list-advanced {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .hdi-pcb-features-item-advanced {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 100, 80, 0.1);
            position: relative;
            padding-left: 30px;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #4a665e;
        }
        
        .hdi-pcb-features-item-advanced::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00c896;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .hdi-pcb-features-image-advanced {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .hdi-pcb-features-image-advanced img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .hdi-pcb-features-image-advanced:hover img {
            transform: scale(1.05);
        }
        
        /* 技术参数表格 */
        .hdi-pcb-table-container-advanced {
            overflow-x: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
        }
        
        .hdi-pcb-specs-table-advanced {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        
        .hdi-pcb-specs-table-advanced th {
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
            white-space: nowrap;
        }
        
        .hdi-pcb-specs-table-advanced td {
            padding: 18px 15px;
            border-bottom: 1px solid #e8f5f2;
            color: #4a665e;
        }
        
        .hdi-pcb-specs-table-advanced tr:nth-child(even) {
            background: #f8fcfb;
        }
        
        .hdi-pcb-specs-table-advanced tr:hover {
            background: #e8f5f2;
        }
        
        /* HDI类型 */
        .hdi-pcb-types-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .hdi-pcb-type-card-advanced {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .hdi-pcb-type-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hdi-pcb-type-image-advanced {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .hdi-pcb-type-content-advanced {
            padding: 30px;
        }
        
        .hdi-pcb-type-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hdi-pcb-type-desc-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 生产流程 */
        .hdi-pcb-process-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .hdi-pcb-process-step-advanced {
            background: white;
            padding: 40px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .hdi-pcb-process-step-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hdi-pcb-step-number-advanced {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }
        
        .hdi-pcb-step-title-advanced {
            font-size: 1.2rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hdi-pcb-step-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 应用部分 */
        .hdi-pcb-applications-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .hdi-pcb-application-item-advanced {
            background: white;
            padding: 40px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .hdi-pcb-application-item-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .hdi-pcb-application-icon-advanced {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: #f8fcfb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            border: 2px solid #e8f5f2;
        }
        
        .hdi-pcb-application-name-advanced {
            font-size: 1.2rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .hdi-pcb-application-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* CTA部分 */
        .hdi-pcb-cta-advanced {
            text-align: center;
        }
        
        .hdi-pcb-cta-title-advanced {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .hdi-pcb-cta-text-advanced {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hdi-pcb-cta-buttons-advanced {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .hdi-pcb-advantages-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hdi-pcb-features-advanced {
                flex-direction: column;
            }
            
            .hdi-pcb-types-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hdi-pcb-process-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hdi-pcb-applications-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hdi-pcb-banner-title-advanced {
                font-size: 2.8rem;
            }
            
            .hdi-pcb-section-title-advanced,
            .hdi-pcb-cta-title-advanced {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hdi-pcb-banner-advanced {
                height: 500px;
            }
            
            .hdi-pcb-banner-title-advanced {
                font-size: 2.2rem;
            }
            
            .hdi-pcb-advantages-grid-advanced,
            .hdi-pcb-types-grid-advanced,
            .hdi-pcb-process-grid-advanced,
            .hdi-pcb-applications-grid-advanced {
                grid-template-columns: 1fr;
            }
        }        
        
        /* 主容器 */
        .tf-product-container-1200 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 横幅部分 */
        .tf-product-banner-advanced {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 100, 80, 0.8) 0%, rgba(0, 70, 50, 0.9) 100%), url('https://www.topfastpcba.ru/wp-content/uploads/2025/08/pcba-home.jpg') center/cover no-repeat;
            overflow: hidden;
        }
        
        .tf-product-banner-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 150, 120, 0.3) 0%, transparent 70%);
        }
        
        .tf-product-banner-content-advanced {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .tf-product-banner-title-advanced {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .tf-product-banner-text-advanced {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .tf-product-banner-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .tf-product-banner-button-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .tf-product-banner-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .tf-product-banner-button-advanced:hover::before {
            left: 100%;
        }
        
        /* 通用部分样式 */
        .tf-product-section-advanced {
            padding: 100px 0;
        }
        
        .tf-product-section-light-advanced {
            background: #f8fcfb;
            position: relative;
        }
        
        .tf-product-section-light-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%2300c896" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
            background-size: 200px 200px;
        }
        
        .tf-product-section-dark-advanced {
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
        }
        
        .tf-product-section-white-advanced {
            background: white;
        }
        
        .tf-product-section-primary-advanced {
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
        }
        
        .tf-product-section-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .tf-product-section-light-advanced .tf-product-section-title-advanced,
        .tf-product-section-white-advanced .tf-product-section-title-advanced {
            color: #003d2d;
        }
        
        .tf-product-section-dark-advanced .tf-product-section-title-advanced,
        .tf-product-section-primary-advanced .tf-product-section-title-advanced {
            color: white;
        }
        
        .tf-product-section-intro-advanced {
            text-align: center;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .tf-product-section-light-advanced .tf-product-section-intro-advanced,
        .tf-product-section-white-advanced .tf-product-section-intro-advanced {
            color: #4a665e;
        }
        
        .tf-product-section-dark-advanced .tf-product-section-intro-advanced,
        .tf-product-section-primary-advanced .tf-product-section-intro-advanced {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .tf-product-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .tf-product-button-advanced:hover {
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .tf-product-button-light-advanced {
            background: white;
            color: #003d2d;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .tf-product-button-light-advanced:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .tf-product-button-center-advanced {
            display: block;
            margin: 0 auto;
            text-align: center;
            width: fit-content;
        }
        
        /* 产品网格 */
        .tf-product-categories-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .tf-product-category-card-advanced {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .tf-product-category-card-advanced:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .tf-product-category-image-advanced {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .tf-product-category-overlay-advanced {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 200, 150, 0.8) 0%, rgba(0, 140, 106, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .tf-product-category-card-advanced:hover .tf-product-category-overlay-advanced {
            opacity: 1;
        }
        
        .tf-product-category-content-advanced {
            padding: 30px;
        }
        
        .tf-product-category-title-advanced {
            font-size: 1.5rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .tf-product-category-desc-advanced {
            color: #4a665e;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .tf-product-category-features-advanced {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .tf-product-category-feature-advanced {
            padding: 8px 0;
            color: #4a665e;
            position: relative;
            padding-left: 25px;
        }
        
        .tf-product-category-feature-advanced::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00c896;
            font-weight: bold;
        }
        
        /* 优势部分 */
        .tf-product-advantages-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .tf-product-advantage-card-advanced {
            background: white;
            padding: 40px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .tf-product-advantage-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .tf-product-advantage-icon-advanced {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .tf-product-advantage-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .tf-product-advantage-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 技术能力 */
        .tf-product-capabilities-advanced {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            align-items: center;
        }
        
        .tf-product-capabilities-content-advanced {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .tf-product-capability-item-advanced {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .tf-product-capability-value-advanced {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #00c896;
            margin-bottom: 0.5rem;
        }
        
        .tf-product-capability-label-advanced {
            display: block;
            font-size: 1rem;
            color: #4a665e;
        }
        
        .tf-product-capabilities-image-advanced {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .tf-product-capabilities-image-advanced img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 应用领域 */
        .tf-product-applications-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .tf-product-application-item-advanced {
            background: white;
            padding: 40px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .tf-product-application-item-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .tf-product-application-icon-advanced {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: #f8fcfb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            border: 2px solid #e8f5f2;
        }
        
        .tf-product-application-name-advanced {
            font-size: 1.2rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .tf-product-application-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* CTA部分 */
        .tf-product-cta-advanced {
            text-align: center;
        }
        
        .tf-product-cta-title-advanced {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .tf-product-cta-text-advanced {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .tf-product-cta-buttons-advanced {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .tf-product-categories-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tf-product-advantages-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tf-product-capabilities-advanced {
                grid-template-columns: 1fr;
            }
            
            .tf-product-applications-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tf-product-banner-title-advanced {
                font-size: 2.8rem;
            }
            
            .tf-product-section-title-advanced,
            .tf-product-cta-title-advanced {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .tf-product-banner-advanced {
                height: 500px;
            }
            
            .tf-product-banner-title-advanced {
                font-size: 2.2rem;
            }
            
            .tf-product-categories-grid-advanced,
            .tf-product-advantages-grid-advanced,
            .tf-product-applications-grid-advanced {
                grid-template-columns: 1fr;
            }
            
            .tf-product-capabilities-content-advanced {
                grid-template-columns: 1fr;
            }
            
            .tf-product-cta-buttons-advanced {
                flex-direction: column;
                align-items: center;
            }
        }


        /* 主容器 */
        .tf-company-container-1200 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 通用部分样式 */
        .tf-company-section-advanced {
            padding: 100px 0;
        }
        
        .tf-company-section-light-advanced {
            background: #f8fcfb;
            position: relative;
        }
        
        .tf-company-section-light-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%2300c896" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
            background-size: 200px 200px;
        }
        
        .tf-company-section-dark-advanced {
            background: linear-gradient(135deg, #003d2d 0%, #001f16 100%);
            color: white;
        }
        
        .tf-company-section-white-advanced {
            background: white;
        }
        
        .tf-company-section-primary-advanced {
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
        }
        
        .tf-company-section-title-advanced {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .tf-company-section-light-advanced .tf-company-section-title-advanced,
        .tf-company-section-white-advanced .tf-company-section-title-advanced {
            color: #003d2d;
        }
        
        .tf-company-section-dark-advanced .tf-company-section-title-advanced,
        .tf-company-section-primary-advanced .tf-company-section-title-advanced {
            color: white;
        }
        
        .tf-company-section-intro-advanced {
            text-align: center;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .tf-company-section-light-advanced .tf-company-section-intro-advanced,
        .tf-company-section-white-advanced .tf-company-section-intro-advanced {
            color: #4a665e;
        }
        
        .tf-company-section-dark-advanced .tf-company-section-intro-advanced,
        .tf-company-section-primary-advanced .tf-company-section-intro-advanced {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .tf-company-button-advanced {
            display: inline-block;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 200, 150, 0.3);
            transition: all 0.3s ease;
        }
        
        .tf-company-button-advanced:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
        }
        
        .tf-company-button-light-advanced {
            background: white;
            color: #003d2d;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .tf-company-button-light-advanced:hover {
            color: green;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .tf-company-button-center-advanced {
            display: block;
            margin: 0 auto;
            text-align: center;
            width: fit-content;
        }
        
        /* 公司介绍部分 */
        .tf-company-hero-advanced {
            position: relative;
            height: 800px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(0, 100, 80, 0.9) 0%, rgba(0, 70, 50, 0.95) 100%), url('/wp-content/uploads/2025/07/PCB-Company.jpg') center/cover no-repeat;
            overflow: hidden;
        }
        
        .tf-company-hero-advanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(0, 150, 120, 0.3) 0%, transparent 70%);
        }
        
        .tf-company-hero-content-advanced {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .tf-company-hero-text-advanced h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .tf-company-hero-desc-advanced {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .tf-company-address-advanced {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.8;
        }
        
        .tf-company-stats-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 2.5rem;
        }
        
        .tf-company-stat-item-advanced {
            text-align: center;
        }
        
        .tf-company-stat-value-advanced {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #00c896;
            margin-bottom: 0.5rem;
        }
        
        .tf-company-stat-label-advanced {
            display: block;
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .tf-company-hero-buttons-advanced {
            display: flex;
            gap: 20px;
        }
        
        .tf-company-video-container-advanced {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .tf-company-video-advanced {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }
        
        .tf-company-video-overlay-advanced {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .tf-company-video-overlay-advanced:hover {
            background: rgba(0, 0, 0, 0.2);
        }
        
        .tf-company-play-icon-advanced {
            width: 80px;
            height: 80px;
            background: rgba(0, 200, 150, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            transition: transform 0.3s ease;
        }
        
        .tf-company-video-overlay-advanced:hover .tf-company-play-icon-advanced {
            transform: scale(1.1);
        }
        
        /* 服务部分 */
        .tf-company-services-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .tf-company-service-card-advanced {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .tf-company-service-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .tf-company-service-icon-advanced {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 600;
            color: white;
        }
        
        .tf-company-service-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .tf-company-service-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 优势部分 */
        .tf-company-advantages-grid-advanced {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .tf-company-advantage-card-advanced {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .tf-company-advantage-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .tf-company-advantage-icon-advanced {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00c896 0%, #008c6a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }
        
        .tf-company-advantage-content-advanced {
            flex: 1;
        }
        
        .tf-company-advantage-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .tf-company-advantage-text-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 证书部分 */
        .tf-company-certificates-grid-advanced {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .tf-company-cert-card-advanced {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .tf-company-cert-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .tf-company-cert-image-advanced {
            height: 200px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            background-color: white;
        }
        
        .tf-company-cert-caption-advanced {
            padding: 20px;
            font-weight: 600;
            color: #003d2d;
        }
        
        /* 产品部分 */
        .tf-company-products-grid-advanced {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .tf-company-product-card-advanced {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .tf-company-product-card-advanced:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .tf-company-product-image-advanced {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .tf-company-product-overlay-advanced {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 200, 150, 0.8) 0%, rgba(0, 140, 106, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .tf-company-product-card-advanced:hover .tf-company-product-overlay-advanced {
            opacity: 1;
        }
        
        .tf-company-product-details-advanced {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .tf-company-product-info-advanced {
            padding: 25px;
        }
        
        .tf-company-product-title-advanced {
            font-size: 1.3rem;
            color: #003d2d;
            margin-bottom: 1rem;
        }
        
        .tf-company-product-desc-advanced {
            color: #4a665e;
            line-height: 1.6;
        }
        
        /* 合作伙伴部分 */
        .tf-company-partners-grid-advanced {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            align-items: center;
        }
        
        .tf-company-partner-logo-advanced {
            height: 80px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .tf-company-partner-logo-advanced:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* CTA部分 */
        .tf-company-cta-advanced {
            text-align: center;
        }
        
        .tf-company-cta-title-advanced {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .tf-company-cta-text-advanced {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .tf-company-hero-content-advanced {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .tf-company-services-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tf-company-certificates-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tf-company-products-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tf-company-partners-grid-advanced {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .tf-company-hero-text-advanced h1 {
                font-size: 2.8rem;
            }
            
            .tf-company-section-title-advanced,
            .tf-company-cta-title-advanced {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .tf-company-hero-advanced {
                height: auto;
                padding: 100px 0;
            }
            
            .tf-company-hero-text-advanced h1 {
                font-size: 2.2rem;
            }
            
            .tf-company-services-grid-advanced,
            .tf-company-advantages-grid-advanced,
            .tf-company-certificates-grid-advanced,
            .tf-company-products-grid-advanced {
                grid-template-columns: 1fr;
            }
            
            .tf-company-partners-grid-advanced {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tf-company-stats-advanced {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .tf-company-hero-buttons-advanced {
                flex-direction: column;
                align-items: center;
            }
        }
        