body{margin:0;font-family:Roboto, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;background:#fff;color:#222}
img{max-width:100%;height:auto}
.container{max-width:1200px;margin:0 auto;padding:16px}
.flex{display:flex}.between{justify-content:space-between}.center{align-items:center}
.site-header{border-bottom:0;background:#007BFF;position:sticky;top:0;z-index:10;box-shadow:0 2px 8px rgba(0,0,0,.08)}
.site-header .container{position:relative}
.logo{font-weight:700;color:#fff}
.nav a{margin-right:12px;color:#fff;text-decoration:none;opacity:.95}
.nav a:hover{opacity:1}
.menu-toggle{display:none;background:transparent;border:1px solid rgba(255,255,255,.9);color:#fff;border-radius:8px;padding:6px 10px;cursor:pointer}
@media(max-width:768px){
	.menu-toggle{display:inline-block}
	.site-header .nav{display:none !important;position:absolute;left:0;right:0;top:100%;z-index:1000;background:#007BFF;padding:12px 16px;box-shadow:0 6px 12px rgba(0,0,0,.08)}
	.site-header .nav.open{display:flex !important;flex-direction:column;gap:10px}
	.lang-switcher select{border-color:#ddd;background:#fff;color:#000}
}
.btn{background:#007BFF;color:#fff;border:none;padding:10px 16px;border-radius:8px;cursor:pointer;transition:all .15s ease}
.btn:hover{background:#0069d9}
.btn.primary{box-shadow:0 2px 6px rgba(0,0,0,.12)}
.btn.outline-light{background:transparent;border:1px solid rgba(255,255,255,.9);color:#fff}
.btn.outline-light:hover{background:#fff;color:#007BFF}
.lang-switcher select{padding:6px;border-radius:8px;border:1px solid rgba(255,255,255,.6);background:transparent;color:#fff}
.lang-switcher option{color:#000}
.hero{padding:56px 0;background:linear-gradient(180deg, rgba(0,123,255,.06), rgba(0,0,0,0))}
.grid{display:grid;gap:20px}
.grid.two{grid-template-columns:1fr}
@media(min-width:768px){.grid.two{grid-template-columns:1fr 1fr}}
.card{border:1px solid #eef2f7;border-radius:12px;padding:20px;box-shadow:0 6px 18px rgba(16,24,40,.06);background:#fff}
.page-title{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.badge{background:#28a745;color:#fff;padding:4px 10px;border-radius:999px;font-size:12px}
.form-group{display:flex;flex-direction:column;margin-bottom:14px}
.form-group label{font-size:13px;color:#475467;margin-bottom:6px}
.form-group input,.form-group select, .form-group textarea{padding:12px 12px;border-radius:10px;border:1px solid #d0d5dd;outline:none;transition:border-color .15s, box-shadow .15s}
.form-group textarea{min-height:120px;resize:vertical}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:#007BFF;box-shadow:0 0 0 3px rgba(0,123,255,.12)}
fieldset.form-group{border:1px solid #eef2f7;border-radius:12px;padding:12px}
.checkbox{display:block;margin:8px 0}
.actions{display:flex;gap:10px;margin-top:10px;flex-wrap:wrap}
.quote-summary h2{margin-top:0}
.list{list-style:none;padding:0;margin:0;border:1px solid #eef2f7;border-radius:10px;overflow:hidden}
.list li{display:grid;grid-template-columns:1fr auto;gap:12px;padding:10px 12px;border-bottom:1px solid #f2f4f7}
.list li.head{background:#f8fafc;font-weight:600;color:#344054}
.list li:last-child{border-bottom:none}
.list li .amount{text-align:right;min-width:120px}
.total{font-weight:800;margin-top:12px;font-size:20px;text-align:right}
.brand-logos{display:flex;gap:12px;margin-top:12px;opacity:.9;flex-wrap:wrap}
.brand-logos img{height:28px}
.site-footer{border-top:1px solid #eaeaea;margin-top:32px;background:#fafafa}
.alert.success{background:#e6ffed;color:#1a7f37;border:1px solid #b7ebc6;padding:10px;border-radius:8px}
.fade-in{animation:fadeIn .3s ease-in}
@keyframes fadeIn{from{opacity:0;transform:translateY(4px)}to{opacity:1;transform:none}}

/* Shopping Cart Styles */
.filter-controls {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 8px;
}

.filter-controls .form-group {
	flex: 1;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
}

.product-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
	background: white;
}

.product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-image {
	height: 200px;
	overflow: hidden;
	background: #f8f9fa;
}

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

.product-info {
	padding: 1rem;
}

.product-info h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.1rem;
	color: #333;
}

.product-brand {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.product-specs {
	margin: 1rem 0;
}

.spec-item {
	display: flex;
	justify-content: space-between;
	margin: 0.25rem 0;
	font-size: 0.875rem;
}

.spec-label {
	font-weight: 600;
	color: #666;
}

.spec-value {
	color: #333;
}

.product-features {
	margin: 1rem 0;
}

.feature-badge {
	display: inline-block;
	background: #e3f2fd;
	color: #1976d2;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	margin: 0.25rem 0.25rem 0.25rem 0;
}

.product-price {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1976d2;
	margin: 1rem 0;
}

.no-products {
	text-align: center;
	color: #666;
	padding: 2rem;
	grid-column: 1 / -1;
}

/* Shopping Cart */
.shopping-cart {
	position: sticky;
	top: 2rem;
	height: fit-content;
	max-height: 80vh;
	overflow-y: auto;
}

.cart-items {
	max-height: 300px;
	overflow-y: auto;
	margin-bottom: 1rem;
}

.empty-cart {
	text-align: center;
	color: #666;
	padding: 2rem;
	margin: 0;
}

.cart-item {
	display: flex;
	align-items: center;
	padding: 1rem;
	border-bottom: 1px solid #eee;
	background: white;
}

.item-image {
	width: 60px;
	height: 60px;
	margin-right: 1rem;
	flex-shrink: 0;
}

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

.item-details {
	flex: 1;
	min-width: 0;
}

.item-details h4 {
	margin: 0 0 0.5rem 0;
	font-size: 0.9rem;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.item-price {
	color: #666;
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
}

.quantity-controls {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.quantity-controls button {
	width: 30px;
	height: 30px;
	border: 1px solid #ddd;
	background: white;
	cursor: pointer;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quantity-controls button:hover {
	background: #f8f9fa;
}

.quantity-controls input {
	width: 50px;
	text-align: center;
	border: 1px solid #ddd;
	padding: 0.25rem;
	border-radius: 4px;
}

.item-total {
	font-weight: 600;
	margin-left: 1rem;
	color: #1976d2;
	white-space: nowrap;
}

.remove-item {
	background: #f44336;
	color: white;
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	margin-left: 1rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.remove-item:hover {
	background: #d32f2f;
}

.cart-summary {
	padding: 1rem;
	border-top: 1px solid #eee;
	background: #f8f9fa;
}

.cart-line {
	display: flex;
	justify-content: space-between;
	margin: 0.5rem 0;
}

.cart-line.total {
	font-weight: 600;
	font-size: 1.1rem;
	color: #1976d2;
	border-top: 1px solid #ddd;
	padding-top: 0.5rem;
	margin-top: 1rem;
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #07C160 100%);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.chat-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.whatsapp-icon {
    font-size: 18px;
    line-height: 1;
}

.wechat-icon {
    font-size: 16px;
    line-height: 1;
}

.chat-toggle.wechat {
    background: #07C160;
    box-shadow: 0 4px 12px rgba(7, 193, 96, 0.3);
}

.chat-toggle.wechat:hover {
    box-shadow: 0 6px 16px rgba(7, 193, 96, 0.4);
}

.chat-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e1e5e9;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chat-panel.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    padding: 16px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.chat-title {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.chat-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.chat-close:hover {
    background: #e9ecef;
}

.chat-content {
    padding: 16px;
}

.chat-option {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.chat-option:hover {
    background: #f8f9fa;
    border-color: #007BFF;
    transform: translateY(-1px);
}

.chat-option:last-child {
    margin-bottom: 0;
}

.chat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 20px;
    color: white;
}

.chat-icon.whatsapp {
    background: #25D366;
}

.chat-icon.wechat {
    background: #07C160;
}

.chat-text {
    flex: 1;
}

.chat-label {
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.chat-desc {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.qr-modal.show {
    opacity: 1;
    visibility: visible;
}

.qr-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    max-width: 300px;
    width: 90%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.qr-image {
    width: 200px;
    height: 200px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    margin: 16px auto;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

.qr-title {
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.qr-desc {
    color: #666;
    font-size: 14px;
    margin: 0 0 16px 0;
}

.qr-close {
    background: #007BFF;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.qr-close:hover {
    background: #0069d9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .whatsapp-icon {
        font-size: 14px;
    }
    
    .wechat-icon {
        font-size: 12px;
    }
    
    .chat-panel {
        width: 280px;
        bottom: 65px;
    }
    
    .qr-content {
        margin: 20px;
        padding: 20px;
    }
    
    .qr-image {
        width: 180px;
        height: 180px;
    }
}

/* Photo Gallery Styles */
.photo-gallery {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 300px;
}

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

.gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.gallery-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.9) 0%, rgba(0, 86, 179, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.gallery-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.4;
}

.gallery-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-item:hover .gallery-btn {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Alternative Gallery Style - Card Style */
.gallery-item.card-style {
    background: white;
    border: none;
    height: auto;
    min-height: 350px;
}

.gallery-item.card-style .gallery-image {
    height: 200px;
}

.gallery-item.card-style .gallery-overlay {
    position: static;
    background: white;
    opacity: 1;
    padding: 20px;
    color: #333;
}

.gallery-item.card-style .gallery-content h4 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.gallery-item.card-style .gallery-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.gallery-item.card-style .gallery-btn {
    background: #007BFF;
    border-color: #007BFF;
    color: white;
}

.gallery-item.card-style:hover .gallery-btn {
    background: #0056b3;
    border-color: #0056b3;
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .gallery-item {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .gallery-content h4 {
        font-size: 1.25rem;
    }
    
    .gallery-content p {
        font-size: 0.85rem;
    }
}

/* Gallery Page Styles */
.content-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.content-card h2 {
    color: #007BFF;
    margin-bottom: 20px;
    font-size: 2rem;
}

.content-card h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.application-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #007BFF;
    height: 100%;
}

.application-card h5 {
    color: #007BFF;
    margin-bottom: 10px;
}

.application-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive for Gallery Pages */
@media (max-width: 768px) {
    .content-card {
        padding: 20px;
        margin: 0 15px 20px 15px;
    }
    
    .content-card h2 {
        font-size: 1.5rem;
    }
    
    .content-card h3 {
        font-size: 1.25rem;
    }
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    height: 100%;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #007BFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px auto;
}

.process-step h4 {
    color: #007BFF;
    margin-bottom: 10px;
}

/* Tech Features */
.tech-feature {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #6f42c1;
    height: 100%;
}

.tech-feature h4 {
    color: #6f42c1;
    margin-bottom: 10px;
}

/* Case Studies */
.case-study {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #fd7e14;
    height: 100%;
}

.case-study h4 {
    color: #fd7e14;
    margin-bottom: 10px;
}

.result-badge {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Support Services */
.support-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    height: 100%;
}

.support-service h4 {
    color: #dc3545;
    margin-bottom: 10px;
}

.contact-method {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-method h5 {
    color: #007BFF;
    margin-bottom: 10px;
}

/* Company Values */
.company-value {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #17a2b8;
    height: 100%;
}

.company-value h4 {
    color: #17a2b8;
    margin-bottom: 10px;
}

/* Blog Styles */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.blog-category .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.8em;
}

.blog-meta {
    border-top: 1px solid #e9ecef;
    padding-top: 0.75rem;
}

.blog-meta i {
    margin-right: 0.25rem;
}

/* Blog Content Styles */
.blog-header {
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.blog-header .container {
    position: relative;
    z-index: 2;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-content {
    line-height: 1.7;
}

.blog-content h2 {
    color: #007BFF;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-content h4 {
    color: #555;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.blog-content h5 {
    color: #666;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.blog-image {
    text-align: center;
    margin: 2rem 0;
}

.blog-cta {
    margin: 2rem 0;
}

.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.related-post {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.related-post h5 {
    margin-bottom: 0.5rem;
}

.related-post h5 a {
    color: #007BFF;
    text-decoration: none;
}

.related-post h5 a:hover {
    text-decoration: underline;
}

/* System Type Cards */
.system-type {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    height: 100%;
}

.system-type h5 {
    color: #28a745;
    margin-bottom: 0.75rem;
}

/* AI Feature Cards */
.ai-feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #6f42c1;
    height: 100%;
}

.ai-feature h5 {
    color: #6f42c1;
    margin-bottom: 0.75rem;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: white;
}

/* Blog List Layout Styles */
.blog-list {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-post-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.blog-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-post-item .blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.blog-post-item .blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-post-item .blog-content {
    padding-left: 1.5rem;
}

.blog-post-item .blog-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-post-item .blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-item .blog-title a:hover {
    color: #007BFF;
    text-decoration: none;
}

.blog-post-item .blog-excerpt {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-post-item .blog-meta {
    border-top: 1px solid #e9ecef;
    padding-top: 0.75rem;
    margin-bottom: 1rem;
}

.blog-post-item .blog-meta i {
    margin-right: 0.25rem;
    color: #6c757d;
}

.blog-post-item .blog-category .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.8em;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-post-item {
        padding: 1.5rem;
    }
    
    .blog-post-item .blog-content {
        padding-left: 0;
        padding-top: 1.5rem;
    }
    
    .blog-post-item .blog-image img {
        height: 200px;
    }
    
    .blog-post-item .blog-title {
        font-size: 1.25rem;
    }
}

/* Security Feature Cards */
.security-feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    height: 100%;
}

.security-feature h5 {
    color: #dc3545;
    margin-bottom: 0.75rem;
}

/* Brand Logos Section */
.brand-logos-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.brand-logos-section .section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.brand-logos-section .section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.brand-logo {
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.brand-logo a {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.brand-logo a:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.brand-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
    background: white;
    padding: 10px;
    border-radius: 4px;
}

.brand-logo:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Responsive adjustments for brand logos */
@media (max-width: 768px) {
    .brand-logos-section .section-title {
        font-size: 1.5rem;
    }
    
    .brand-logos-section .section-subtitle {
        font-size: 0.9rem;
    }
    
    .brand-logo {
        margin-bottom: 1rem;
    }
}
