* { box-sizing: border-box; }
body { 
    margin: 0; 
    background: #000; 
    color: #fff; 
    font-family: Arial, sans-serif; 
    overflow-x: hidden;
}


/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #333;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px !important;
    width: auto !important;
    object-fit: contain;
    margin-right: 15px;
}

.brand h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.brand span {
    font-size: 13px;
    color: #aaa;
}

/* BỐ CỤC 2 CỘT */
.container { padding: 10px 15px; }
.section-title { 
    font-size: 16px; 
    margin: 5px 0 10px 0; 
    letter-spacing: 1px;
    text-align: center;
}

.price-grid {
    display: flex;
    gap: 15px; /* Khoảng cách giữa 2 bảng */
    align-items: flex-start;
}

.price-table { 
    flex: 1; /* Để 2 bảng có độ rộng bằng nhau */
    width: 100%; 
    border-collapse: collapse; 
}

.price-table th, .price-table td {
    border: 1px solid #333;
    padding: 6px 8px; /* Thu gọn padding hơn nữa */
    font-size: 13px;
}
.price-table th { background: #111; color: #eee; font-size: 12px; }
.price-table td:first-child { font-weight: bold; text-align: left; }

.price-sell { color: #00ff9c; font-weight: 800; font-size: 1rem; text-align: right; }
.price-buy { color: #ff4d4f; font-weight: 800; font-size: 1rem; text-align: right; }

/* FOOTER / INFO - ĐÃ CĂN GIỮA ĐỒNG ĐỀU */
.company-info {
    width: 100%;
    background: #000;
    border-top: 1px solid #333;
    padding: 20px 0; /* Thêm khoảng đệm trên dưới */
}

.company-info-inner {
    display: flex;
    justify-content: center; /* Căn giữa các cột theo chiều ngang */
    align-items: flex-start; /* Căn các cột bắt đầu từ đỉnh */
    gap: 20px; /* Khoảng cách giữa các cột */
    max-width: 1200px; /* Giới hạn độ rộng để không bị quá loãng */
    margin: 0 auto; /* Căn giữa toàn bộ khối footer */
    padding: 10px 20px;
}

.company-col {
    flex: 1;
    text-align: center; /* Căn giữa toàn bộ nội dung trong cột */
}

.company-col h3 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    text-transform: uppercase; /* Làm tiêu đề nổi bật hơn */
}

.company-col p {
    font-size: 13px;
    margin: 6px 0;
    color: #ccc;
    line-height: 1.5;
}

.company-info a {
    text-decoration: none;
    color: #00ff9c; /* Màu xanh nổi bật để dễ click */
    transition: 0.3s;
    font-weight: 600;
}

.company-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Tối ưu cho di động: Chuyển thành 1 cột và căn giữa */
@media (max-width: 768px) {
    .company-info-inner {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
}
/* RESPONSIVE: Trên điện thoại sẽ quay về 1 cột */
@media (max-width: 800px) {
    .price-grid { flex-direction: column; }
    .company-info-inner { flex-direction: column; gap: 8px; }
    .brand h1 { font-size: 14px; }
}