/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

.container {
    width: 1200px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Top Header */
.top-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-mark {
    width: 70px;
    height: 70px;
    background: #c41e3a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    letter-spacing: 2px;
}

.logo-text h1 {
    font-size: 28px;
    color: #333;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
}

.logo-text p {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-tagline {
    border-left: 2px solid #c41e3a;
    padding-left: 12px;
    margin-left: 10px;
}

.logo-tagline p {
    font-size: 14px;
    color: #c41e3a;
    line-height: 1.4;
}

.logo-tagline p:last-child {
    color: #999;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    width: 45px;
    height: 45px;
    border: 2px solid #c41e3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c41e3a;
    font-size: 22px;
}

.top-phone-text p {
    font-size: 13px;
    color: #999;
    line-height: 1.4;
}

.top-phone-text p:last-child {
    font-size: 22px;
    color: #c41e3a;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Main Navigation */
.main-nav {
    background: #c41e3a;
    height: 50px;
    line-height: 50px;
}

.main-nav .container {
    display: flex;
    justify-content: center;
}

.main-nav a {
    color: #fff;
    padding: 0 35px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.main-nav a:first-child {
    border-left: none;
}

.main-nav a:hover,
.main-nav a.active {
    background: #a01830;
}

/* Page Banner (inner pages) */
.page-banner {
    padding: 50px 0;
    color: #fff;
}

.page-banner h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
}

.page-banner p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Breadcrumb Wrap */
.breadcrumb-wrap {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.breadcrumb-wrap .container {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.breadcrumb-wrap a {
    color: #555;
    text-decoration: none;
}

.breadcrumb-wrap a:hover {
    color: #c41e3a;
}

.breadcrumb-wrap .sep {
    color: #ccc;
}

.breadcrumb-wrap .current {
    color: #c41e3a;
    font-weight: bold;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 480px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f0 40%, #f0f8ff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(26, 115, 232, 0.3) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-banner::after {
    content: '';
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 45%;
    height: 100%;
    background: url('../images/hero-bearing.svg') no-repeat right center;
    background-size: contain;
    opacity: 0.95;
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-text h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.red-line {
    width: 60px;
    height: 4px;
    background: #c41e3a;
}

/* Breadcrumb */
.breadcrumb-bar {
    background: #f5f5f5;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-bar .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.breadcrumb-bar .home-icon {
    color: #c41e3a;
}

.breadcrumb-bar a {
    color: #666;
}

.breadcrumb-bar a:hover {
    color: #c41e3a;
}

.breadcrumb-bar .sep {
    color: #999;
}

.breadcrumb-bar .current {
    color: #c41e3a;
}

/* Main Content Area */
.home-main {
    padding: 30px 0 60px;
    background: #fff;
}

.home-main .container {
    display: flex;
    gap: 25px;
}

/* Sidebar */
.sidebar {
    width: 240px;
    flex-shrink: 0;
}

.sidebar-title {
    background: #c41e3a;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-menu {
    border: 1px solid #eee;
    border-top: none;
}

.sidebar-menu li {
    border-bottom: 1px solid #eee;
}

.sidebar-menu a {
    display: block;
    padding: 14px 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    padding-left: 30px;
}

.sidebar-menu a::before {
    content: '›';
    position: absolute;
    left: 15px;
    color: #c41e3a;
    font-size: 18px;
    font-weight: bold;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: #fff5f5;
    color: #c41e3a;
    padding-left: 35px;
}

/* Content Area */
.content-area {
    flex: 1;
}

.section-title {
    font-size: 22px;
    color: #333;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid #c41e3a;
    margin-bottom: 20px;
    display: inline-block;
}

.intro-box {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 25px;
    margin-bottom: 25px;
    line-height: 2;
    color: #666;
    font-size: 14px;
    text-indent: 2em;
}

/* Product Grid in Content */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-item {
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
    background: #fff;
}

.product-item:hover {
    border-color: #c41e3a;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.1);
}

.product-item img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 12px;
}

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

.product-item .btn-more {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid #c41e3a;
    color: #c41e3a;
    font-size: 13px;
    transition: all 0.3s;
}

.product-item .btn-more:hover {
    background: #c41e3a;
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: #c41e3a;
    color: #fff;
}

.btn-primary:hover {
    background: #a01830;
}

.btn-secondary {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #eee;
    color: #333;
}

.btn-outline {
    background: #fff;
    color: #c41e3a;
    border: 1px solid #c41e3a;
}

.btn-outline:hover {
    background: #c41e3a;
    color: #fff;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

/* Inquiry Page */
.inquiry-page {
    padding: 50px 0 70px;
    background: #f5f5f5;
}

.inquiry-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.inquiry-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

.inquiry-card-header {
    background: #c41e3a;
    color: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inquiry-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inquiry-count {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 13px;
}

.inquiry-card-body {
    padding: 24px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.empty-cart .icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ddd;
}

.empty-cart p {
    margin: 0;
}

.inquiry-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.inquiry-item:hover {
    border-color: #c41e3a;
    box-shadow: 0 2px 8px rgba(196,30,58,0.08);
}

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

.inquiry-item-info .model {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.inquiry-item-info .category {
    font-size: 13px;
    color: #999;
}

.qty-input {
    width: 70px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.qty-input:focus {
    outline: none;
    border-color: #c41e3a;
}

.remove-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    color: #999;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: all 0.2s;
}

.remove-btn:hover {
    background: #c41e3a;
    color: #fff;
    border-color: #c41e3a;
}

.inquiry-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.inquiry-form {
    padding: 24px;
}

.inquiry-form h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f5f5f5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group .required {
    color: #c41e3a;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 3px rgba(196,30,58,0.08);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-note {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 50px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.form-success.show {
    display: block;
}

.form-success h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
}

.form-success p {
    color: #666;
    line-height: 1.6;
}

.form-success .success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 12px;
}

/* Contact Page */
.contact-page {
    padding: 50px 0 70px;
    background: #f5f5f5;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

.contact-card-header {
    background: #c41e3a;
    color: #fff;
    padding: 18px 24px;
}

.contact-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card-header p {
    margin: 0;
    font-size: 13px;
    opacity: 0.85;
}

.contact-card-body {
    padding: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item .icon {
    width: 44px;
    height: 44px;
    background: rgba(196,30,58,0.08);
    color: #c41e3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item .label {
    font-size: 13px;
    color: #999;
    margin-bottom: 2px;
}

.contact-info-item .value {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.contact-quick-links {
    padding: 20px 24px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.contact-quick-links h4 {
    font-size: 14px;
    color: #333;
    margin: 0 0 12px;
}

.quick-link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link-list a {
    color: #c41e3a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.quick-link-list a:hover {
    color: #a01830;
    padding-left: 4px;
}

.contact-form {
    padding: 24px;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Company Info Cards */
.info-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.info-section .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-top: 3px solid #c41e3a;
}

.info-card .number {
    font-size: 42px;
    font-weight: bold;
    color: #c41e3a;
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 13px;
    color: #999;
}

/* Footer */
.footer {
    background: #222;
    color: #fff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-mark-sm {
    width: 50px;
    height: 50px;
    background: #c41e3a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
}

.footer-logo-wrap h3 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 4px;
}

.footer-logo-wrap p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.footer-desc {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #c41e3a;
    border-color: #c41e3a;
    color: #fff;
}

.footer-col h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #c41e3a;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #c41e3a;
    padding-left: 4px;
}

.footer-bottom {
    background: #1a1a1a;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    color: #777;
    font-size: 13px;
}

/* ===== About Page ===== */
.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #c41e3a;
    border-radius: 2px;
}

.about-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-hero-grid .visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-grid .visual svg {
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.about-stat {
    text-align: center;
    padding: 30px 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border-top: 3px solid #c41e3a;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(196,30,58,0.12);
}

.about-stat .num {
    font-size: 42px;
    font-weight: 800;
    color: #c41e3a;
    line-height: 1;
    margin-bottom: 10px;
}

.about-stat .label {
    font-size: 14px;
    color: #777;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.section-tag {
    display: inline-block;
    background: rgba(196,30,58,0.08);
    color: #c41e3a;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #222;
}

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

.feature-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: rgba(196,30,58,0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #c41e3a, #e04560);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(196,30,58,0.25);
}

.feature-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.cta-banner {
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    border-radius: 10px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #c41e3a;
}

.cta-banner .btn-primary:hover {
    background: #222;
    color: #fff;
}

.cta-banner .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.cta-banner .btn-outline:hover {
    background: #fff;
    color: #c41e3a;
    border-color: #fff;
}

/* ===== FAQ / Knowledge Page ===== */
.faq-section {
    padding: 50px 0 70px;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-group {
    margin-bottom: 48px;
}

.faq-group-title {
    font-size: 24px;
    font-weight: 700;
    color: #c41e3a;
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.faq-group-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: #c41e3a;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(196,30,58,0.25);
    box-shadow: 0 4px 16px rgba(196,30,58,0.06);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.faq-item h3::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: #c41e3a;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.faq-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 8px;
    padding-left: 24px;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-item p strong {
    color: #c41e3a;
}

.faq-item a {
    color: #c41e3a;
    text-decoration: underline;
    text-decoration-color: rgba(196,30,58,0.3);
    transition: text-decoration-color 0.2s;
}

.faq-item a:hover {
    text-decoration-color: #c41e3a;
}

.faq-item ul {
    margin: 10px 0 8px 24px;
    padding: 0;
    list-style: none;
}

.faq-item ul li {
    font-size: 14px;
    color: #555;
    line-height: 2;
    padding-left: 20px;
    position: relative;
}

.faq-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #c41e3a;
    border-radius: 50%;
}

.faq-item ul li strong {
    color: #333;
}

@media (max-width: 768px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .faq-item {
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 35px 20px;
    }

    .cta-banner h2 {
        font-size: 22px;
    }
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 4px;
    margin-top: 10px;
}

.lang-switch button {
    background: #f5f5f5;
    border: 1px solid #ccc;
    color: #666;
    padding: 3px 12px;
    font-size: 12px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
}

.lang-switch button:hover {
    background: #e8e8e8;
    border-color: #c41e3a;
    color: #c41e3a;
}

.lang-switch button.active {
    background: #c41e3a;
    border-color: #c41e3a;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        height: auto;
        line-height: 40px;
    }
    
    .main-nav .container {
        flex-wrap: wrap;
    }
    
    .main-nav a {
        padding: 0 15px;
        font-size: 13px;
    }
    
    .hero-banner {
        height: 350px;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
    
    .home-main .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-section .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
