* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); color: var(--text-color); line-height: 1.6; background: var(--bg-color); }
a { color: var(--primary-color); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.header { background: var(--bg-dark); padding: 0; position: sticky; top: 0; z-index: 100; }
.header-top { background: var(--primary-color); padding: 8px 0; }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: white; font-weight: 700; }
.header-phone { font-weight: 700; }
.header-phone a, .header-email a { color: white; }
.header-main { padding: 12px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 40px; width: auto; }
.logo-text { color: white; font-size: 22px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.nav-list { display: flex; list-style: none; gap: 8px; flex-wrap: wrap; }
.nav-item a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius); transition: all 0.2s; }
.nav-item a:hover { color: white; background: rgba(255,255,255,0.1); }

.main { min-height: calc(100vh - 200px); }
.main > .container { padding-top: 40px; padding-bottom: 60px; }

.hero { position: relative; min-height: 500px; display: flex; align-items: center; background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a2a 100%); overflow: hidden; margin: 0; padding: 60px 0; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('/static/images/WhatsApp_Image_2019-10-21_at_13.44.44_1766758697538.jpeg') center/cover no-repeat; opacity: 0.25; }
.page-hero { min-height: 350px; background-size: cover !important; background-position: center !important; }
.page-hero::before { display: none; }
.page-hero h1 { font-size: 42px; color: white; }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-main-title { color: white; font-size: 48px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.hero-desc { color: rgba(255,255,255,0.9); font-size: 20px; line-height: 1.6; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat { text-align: center; }
.hero-stat-num { color: var(--primary-color); font-size: 36px; font-weight: 700; }
.hero-stat-label { color: rgba(255,255,255,0.7); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

.footer { background: var(--bg-dark); color: white; padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 36px; }
.footer-desc { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; }
.footer-title { font-size: 16px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-color); }
.footer-contact { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 2; }
.footer-contact a { color: white; font-weight: 500; }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }

.footer-legal-center {
    flex: 1;
    text-align: center;
}

.footer-legal-center a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal-center a:hover {
    color: #fff;
}

.footer-copyright, .footer-legal {
    flex: 0 0 auto;
}
.footer-copyright { color: rgba(255,255,255,0.5); font-size: 13px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 15px; text-align: center; } }

.flash-messages { margin-bottom: 24px; }
.flash { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 12px; font-size: 14px; }
.flash-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.flash-danger { background: #ffebee; color: #c62828; border-left: 4px solid #f44336; }
.flash-warning { background: #fff3e0; color: #e65100; border-left: 4px solid #ff9800; }
.flash-info { background: #e3f2fd; color: #1565c0; border-left: 4px solid #2196f3; }

.breadcrumbs { margin-bottom: 24px; font-size: 14px; color: var(--text-light); }
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--primary-color); }

h1 { font-family: var(--font-heading); font-size: 36px; font-weight: 700; margin-bottom: 24px; color: var(--text-color); line-height: 1.2; }
h2 { font-family: var(--font-heading); font-size: 28px; font-weight: 600; margin-bottom: 20px; color: var(--text-color); }
h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin-bottom: 12px; }

.section { padding: 60px 0; }
.section-dark { background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-light); font-size: 18px; max-width: 600px; margin: 0 auto; }
.section-more { text-align: center; margin-top: 40px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-size: 15px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-primary { background: var(--primary-color); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: white; border: 2px solid white; }
.btn-secondary:hover { background: white; color: var(--bg-dark); }
.btn-outline { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-outline:hover { background: var(--primary-color); color: white; }
.btn-dark { background: var(--bg-dark); color: white; }
.btn-dark:hover { background: #333; color: white; }

.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.category-card { display: block; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: all 0.3s; border: 1px solid var(--border-color); }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-color); }
.category-img { width: 100%; height: 200px; object-fit: contain; background: #fff; padding: 10px; }
.category-img.placeholder { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); display: flex; align-items: center; justify-content: center; height: 200px; }
.category-img.placeholder::after { content: ''; width: 60px; height: 60px; border: 3px solid rgba(255,255,255,0.2); border-radius: 50%; }
.category-body { padding: 20px; }
.category-card h3 { font-size: 18px; color: var(--text-color); margin-bottom: 8px; }
.category-desc { font-size: 14px; color: var(--text-light); line-height: 1.5; }

.product-lines-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.product-line-card { display: block; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: all 0.3s; border: 1px solid var(--border-color); }
.product-line-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-color); }
.product-line-img { width: 100%; height: 160px; object-fit: contain; background: #fff; }
.product-line-info { padding: 16px; min-height: 80px; display: flex; flex-direction: column; justify-content: flex-start; text-align: center; }
.product-line-info h3 { font-size: 16px; color: var(--text-color); margin: 0 0 4px 0; line-height: 1.3; }
.product-line-info h5 { font-size: 13px; color: var(--text-light); margin: 0; font-weight: 400; line-height: 1.4; }
.product-line-card h3 { padding: 16px; font-size: 16px; color: var(--text-color); }

/* Tables styling - consistent across the site */
.size-items-table,
.content-table,
.accessory-table table,
.content-text table,
.page-content table,
.news-content table,
.seo-text table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 24px 0;
    border: 1px solid var(--border-color);
}

.size-items-table th, .size-items-table td,
.content-table th, .content-table td,
.accessory-table th, .accessory-table td,
.content-text table th, .content-text table td,
.page-content table th, .page-content table td,
.news-content table th, .news-content table td,
.seo-text table th, .seo-text table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.size-items-table th,
.content-table thead th,
.accessory-table thead th,
.content-text table th,
.page-content table th,
.news-content table th,
.seo-text table th {
    background: #000000 !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.size-items-table td:first-child,
.content-table td:first-child,
.accessory-table td:first-child,
.content-text table td:first-child,
.page-content table td:first-child,
.news-content table td:first-child,
.seo-text table td:first-child {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.size-items-table td:first-child a,
.content-table td:first-child a,
.accessory-table td:first-child a,
.content-text table td:first-child a,
.page-content table td:first-child a,
.news-content table td:first-child a,
.seo-text table td:first-child a {
    color: var(--primary-color) !important;
}

.size-items-table tr:hover,
.content-table tbody tr:hover,
.accessory-table tbody tr:hover,
.content-text table tr:hover,
.page-content table tr:hover,
.news-content table tr:hover,
.seo-text table tr:hover {
    background: var(--bg-light);
}

.size-items-table a,
.content-table a,
.accessory-table a {
    font-weight: 600;
    color: var(--primary-color);
}

.in-stock { color: var(--success-color); font-weight: 600; }
.out-of-stock { color: var(--text-light); }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; } }
.gallery-figure {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-caption {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
    text-align: center;
    padding: 0 20px;
    font-style: italic;
}

.product-gallery { background: var(--bg-light); border-radius: var(--radius-lg); overflow: hidden; }
.product-img { width: 100%; min-height: 400px; object-fit: cover; }
.product-info h1 { font-size: 32px; margin-bottom: 16px; }
.product-title { font-size: 32px; font-weight: 700; margin-bottom: 16px; color: var(--text-color); }
.product-specs { width: 100%; margin: 24px 0; }
.product-specs th, .product-specs td { padding: 12px 0; border-bottom: 1px solid var(--border-color); font-size: 15px; }
.product-specs th { width: 45%; color: var(--text-light); font-weight: 500; }
.price { color: var(--primary-color); font-size: 28px; font-weight: 700; }
.product-actions { background: var(--bg-light); padding: 24px; border-radius: var(--radius-lg); margin-top: 24px; }
.product-actions h3 { margin-bottom: 16px; font-size: 18px; }

.lead-form { max-width: 600px; }
.lead-form .form-row { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.lead-form input, .lead-form textarea { flex: 1; min-width: 200px; padding: 14px 16px; border: 2px solid var(--border-color); border-radius: var(--radius); font-size: 15px; font-family: inherit; transition: border-color 0.2s; }
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--primary-color); }
.lead-form textarea { width: 100%; min-height: 100px; resize: vertical; margin-bottom: 16px; }
.lead-form button { width: 100%; }
.lead-form .captcha-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; background: #f8f9fa; padding: 12px 16px; border-radius: var(--radius); }
.lead-form .captcha-row label { flex: 1; font-weight: 500; color: var(--text-color); min-width: 150px; }
.lead-form .captcha-row input { max-width: 120px; min-width: 80px; flex: 0; text-align: center; }
.service-lead-form { margin-top: 20px; }
.service-lead-form .form-row { margin-bottom: 12px; }
.service-cta-section { 
    position: relative; 
    padding: 60px 40px; 
    border-radius: var(--radius-lg); 
    color: white; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: center; 
    margin: 60px 0; 
    background: linear-gradient(135deg, rgba(30,30,30,0.9) 0%, rgba(42,42,42,0.85) 100%), url('/static/images/cta-bg.jpg') center/cover no-repeat; 
    background-color: var(--bg-dark);
}
.service-cta-section .cta-content { display: block; }
.service-cta-section .cta-info h3 { color: white; font-size: 32px; margin-bottom: 16px; }
.service-cta-section .cta-info p { color: rgba(255,255,255,0.8); font-size: 18px; margin: 0; }
.service-cta-section .cta-form-wrapper { background: white; padding: 32px; border-radius: var(--radius-lg); }
.service-cta-section .lead-form .form-row { margin-bottom: 12px; }
@media (max-width: 900px) { 
    .service-cta-section { grid-template-columns: 1fr; padding: 40px 20px; } 
    .service-cta-section .cta-content { flex-direction: column; text-align: center; }
}

.cta-section { position: relative; padding: 60px 40px; border-radius: var(--radius-lg); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin: 60px 0; background: linear-gradient(135deg, rgba(30,30,30,0.9) 0%, rgba(42,42,42,0.85) 100%), url('/static/images/cta-bg.jpg') center/cover no-repeat; background-color: var(--bg-dark); }

.services-section { background: var(--bg-light); }
.services-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 24px; 
}
.service-card { 
    flex: 0 1 280px; 
    display: block; 
    background: white; 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow); 
    overflow: hidden; 
    transition: all 0.3s; 
    border: 1px solid var(--border-color); 
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-img { width: 100%; height: 180px; object-fit: cover; }
.service-img.placeholder { background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%); }
.service-body { padding: 20px; }
.service-body h3 { font-size: 18px; margin-bottom: 8px; color: var(--text-color); }
.service-body p { font-size: 14px; color: var(--text-light); line-height: 1.5; }
.cta-content h2 { color: white; font-size: 32px; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 24px; }
.cta-form { background: white; padding: 32px; border-radius: var(--radius-lg); }
.cta-form h3 { color: var(--text-color); margin-bottom: 20px; }
@media (max-width: 900px) { .cta-section { grid-template-columns: 1fr; text-align: center; } .cta-form { max-width: 400px; margin: 0 auto; } }

.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.news-card { display: block; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: all 0.3s; border: 1px solid var(--border-color); }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-card-body { padding: 24px; }
.news-date { font-size: 13px; color: var(--primary-color); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.news-excerpt { color: #000000; font-size: 15px; line-height: 1.5; }
.news-detail { max-width: 800px; }
.news-content { line-height: 1.8; font-size: 16px; }
.news-content p { margin-bottom: 18px; }
.news-back { margin-top: 40px; }

.page-content { line-height: 1.8; font-size: 16px; }
.page-content p { margin-bottom: 18px; }
.page-content h2, .page-content h3 { margin-top: 32px; margin-bottom: 18px; }
.page-content ul, .page-content ol { margin-left: 28px; margin-bottom: 18px; }

.seo-text { margin-top: 50px; padding-top: 40px; border-top: 2px solid var(--border-color); color: var(--text-light); font-size: 14px; line-height: 1.8; }

/* Documents list */
.documents-list {
    margin-top: 20px;
}
.document-item { 
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 15px 20px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}
.document-item:hover { 
    border-color: var(--primary-color);
    background-color: #fcfcfc;
}
.document-link { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    text-decoration: none; 
    color: var(--text-color); 
    font-weight: 600; 
    font-size: 15px; 
    margin-bottom: 5px;
    line-height: 1.4;
}
.document-link:hover { color: var(--primary-color); }
.document-icon { font-size: 20px; flex-shrink: 0; color: var(--primary-color); }
.document-description { 
    margin: 0 0 10px 0; 
    color: var(--text-light); 
    font-size: 13px; 
    line-height: 1.5;
}
.document-type-badge { 
    display: flex; 
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa; 
    padding: 4px 10px; 
    border-radius: 4px; 
    font-size: 11px; 
    color: #777; 
}
.document-type-badge .type-date { 
    color: #999; 
    border-left: 1px solid #ddd; 
    padding-left: 10px; 
}

/* Documents filter */
.documents-filter { margin-bottom: 25px; }
.filter-form .filter-row { display: flex; flex-wrap: nowrap; gap: 10px; align-items: stretch; width: 100%; }
.filter-types { flex: 0 0 250px; }
.filter-select { 
    width: 100%; 
    height: 42px;
    padding: 0 15px; 
    border: 1px solid var(--border-color); 
    border-radius: var(--radius); 
    background-color: white; 
    font-size: 14px; 
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
}
.filter-select:focus { outline: none; border-color: var(--primary-color); }
.filter-search { display: flex; gap: 10px; flex: 1; align-items: stretch; }
.filter-search input[type="text"] { flex: 1; padding: 0 15px; height: 42px; border: 1px solid var(--border-color); border-radius: var(--radius); font-size: 14px; }
.filter-search .btn { height: 42px; padding: 0 20px; text-transform: none; white-space: nowrap; font-size: 14px; }

@media (max-width: 768px) {
    .filter-form .filter-row { flex-wrap: wrap; }
    .filter-types { flex: 1 1 100%; }
    .filter-search { flex: 1 1 100%; }
}

@media (max-width: 768px) {
    .filter-form .filter-row { flex-direction: column; align-items: stretch; }
    .filter-search { min-width: 100%; }
    .documents-list { grid-template-columns: 1fr; }
}

.description { margin-bottom: 30px; line-height: 1.8; font-size: 16px; }
.category-short-desc { margin-bottom: 30px; line-height: 1.8; font-size: 16px; text-align: justify; }
.category-main-img, .product-line-main-img { max-width: 100%; border-radius: var(--radius-lg); margin-bottom: 30px; box-shadow: var(--shadow); }

.features-section { padding: 60px 0; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin: 40px 0; }
.feature { text-align: center; padding: 30px 20px; }
.feature-icon { width: 70px; height: 70px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: white; font-size: 28px; }
.feature h3 { font-size: 18px; margin-bottom: 10px; }
.feature p { color: var(--text-light); font-size: 14px; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin: 40px 0; }
.gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius); cursor: pointer; transition: transform 0.3s; }
.gallery img:hover { transform: scale(1.05); }

/* Content tables - kept for backward compatibility if class is used directly */
.content-table {
    /* styles already covered by global table styles above */
}

/* SEO Text Styles */
.seo-text {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}
.seo-text h2 {
    font-size: 24px;
    margin: 1.5em 0 0.8em;
    color: var(--text-color);
}
.seo-text h2:first-child {
    margin-top: 0;
}
.seo-text h3 {
    font-size: 20px;
    margin: 1.3em 0 0.6em;
    color: var(--text-color);
}
.seo-text h4 {
    font-size: 17px;
    margin: 1.2em 0 0.5em;
    color: var(--text-color);
}
.seo-text p {
    margin: 0 0 1em;
}
.seo-text ul, .seo-text ol {
    margin: 0.8em 0 1em 1.5em;
    padding: 0;
}
.seo-text li {
    margin: 0.4em 0;
}
.seo-text a {
    color: var(--primary-color);
    text-decoration: underline;
}
.seo-text a:hover {
    text-decoration: none;
}
.seo-text strong, .seo-text b {
    font-weight: 600;
}
.seo-text em, .seo-text i {
    font-style: italic;
}
.seo-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}
.seo-text table th,
.seo-text table td {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    text-align: left;
}
.seo-text table th {
    background: var(--bg-light);
    font-weight: 600;
}
.seo-text table tr:nth-child(even) {
    background: var(--bg-light);
}
.seo-text p[style*="text-align: center"] {
    text-align: center !important;
}
.seo-text p[style*="text-align: right"] {
    text-align: right !important;
}
.seo-text p[style*="text-align: justify"] {
    text-align: justify !important;
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .header-inner { flex-direction: column; gap: 15px; }
    .nav-list { justify-content: center; }
    h1 { font-size: 28px; }
    .hero { min-height: 400px; padding: 40px 0; }
    .hero-main-title { font-size: 32px; }
    .hero-desc { font-size: 16px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    
    .content-table,
    .content-text table,
    .page-content table,
    .seo-text table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .seo-text {
        margin-top: 30px;
        padding-top: 20px;
    }
}

/* Statutory docs on About/Contacts */
.statutory-docs-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}
.statutory-docs-section h3 {
    margin-bottom: 25px;
    font-size: 24px;
}
.statutory-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}
.statutory-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    height: 100%;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}
.statutory-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.statutory-card-icon {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}
.statutory-card-content {
    flex: 1;
}
.statutory-card-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.4;
}
.statutory-card:hover .statutory-card-name {
    color: var(--primary-color);
}
.statutory-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .statutory-docs-grid {
        grid-template-columns: 1fr;
    }
}

.also-bought-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}
.also-bought-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-color);
}
.also-bought-block {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: var(--radius);
}
.also-bought-block h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}
.also-bought-desc {
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-muted);
}
.also-bought-table table,
.also-bought-table .accessory-match-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.also-bought-table th,
.also-bought-table td {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    text-align: left;
}
.also-bought-table thead th,
.also-bought-table tr:first-child th {
    background: #000000;
    color: white;
    font-weight: 600;
}
.also-bought-table tbody td:first-child,
.also-bought-table tr td:first-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Accessory Blocks */
.accessory-block {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accessory-header {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.accessory-info {
    flex: 3;
}

.accessory-image {
    flex: 1;
    min-width: 200px;
}

.accessory-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.accessory-info h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5rem;
}

.accessory-description {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .accessory-header {
        flex-direction: column;
    }
    .accessory-image {
        width: 100%;
        order: -1;
    }
}
