body, html {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}
a {
    color: #ffb400;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #d99b00;
}
.bridgeTopBar {
    background-color: #0d2238;
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
}
.bridgeTopWrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.bridgeHeader {
    background-color: #ffb400;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.bridgeNavWrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 65px;
}
.bridgeLogo img {
    height: 40px;
    max-width: 160px;
    object-fit: contain;
    vertical-align: middle;
}
.bridgeNavMenu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.bridgeNavMenu li {
    margin: 0 6px;
}
.bridgeNavMenu li a {
    color: #0d2238;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 4px;
}
.bridgeNavMenu li a:hover, .bridgeNavMenu li.bridgeActive a {
    color: #ffffff;
    background: #0d2238;
}
.bridgeContainer {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 20px;
}
.bridgeSectionHeader {
    text-align: center;
    margin: 40px 0 25px 0;
}
.bridgeSectionTitle {
    font-size: 24px;
    color: #0d2238;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.bridgeSectionLine {
    width: 45px;
    height: 3px;
    background: #ffb400;
    margin: 0 auto;
    border-radius: 2px;
}
.bridgeHeroBox {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04);
}
.bridgeHeroCard {
    flex: 1;
    min-width: 300px;
    background: #fafbfd;
    border: 1px solid #eaedf1;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.bridgeHeroImg {
    width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    flex-shrink: 0;
}
.bridgeHeroInfo {
    flex: 1;
    overflow: hidden;
}
.bridgeHeroTitle {
    font-size: 16px;
    font-weight: 600;
    color: #0d2238;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.bridgeGridSix {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}
.bridgeCard {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.bridgeCard:hover {
    transform: translateY(-4px);
    border-color: #ffb400;
    box-shadow: 0 6px 18px rgba(255, 180, 0, 0.15);
}
.bridgeCardImg {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin: 0 auto 12px auto;
}
.bridgeCardTitle {
    color: #0d2238;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.bridgeCardPrice {
    color: #e53935;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.bridgeCardBtn {
    display: block;
    background: #0d2238;
    color: #ffffff !important;
    padding: 6px 0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
}
.bridgeCardBtn:hover {
    background: #ffb400;
    color: #0d2238 !important;
}
.bridgeYellowBox {
    background: #ffb400;
    border-radius: 8px;
    padding: 25px 20px;
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.bridgeYellowCard {
    background: #ffffff;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bridgeRoundGrid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    margin-bottom: 35px;
}
.bridgeRoundCard {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 12px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s, border-color 0.3s;
}
.bridgeRoundCard:hover {
    transform: translateY(-3px);
    border-color: #ffb400;
}
.bridgeRoundImg {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    background: #fdf6e6;
    margin-bottom: 8px;
}
.bridgeGridFour {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.bridgeTableWrap {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.bridgeTable {
    width: 100%;
    border-collapse: collapse;
}
.bridgeTable th {
    text-align: left;
    padding: 12px 15px;
    color: #666666;
    border-bottom: 1px solid #eaeaea;
    font-size: 13px;
    font-weight: 600;
    background: #fafbfd;
}
.bridgeTable td {
    padding: 14px 15px;
    border-bottom: 1px solid #f2f2f2;
    color: #444444;
    font-size: 14px;
    vertical-align: middle;
}
.bridgeTable tr:hover td {
    background: #fdfbf7;
}
.bridgeBadge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
}
.bridgeBadgeAuto {
    background: rgba(255, 180, 0, 0.15);
    color: #b37e00;
    border: 1px solid #ffb400;
}
.bridgeBadgeManual {
    background: #f5f5f5;
    color: #777777;
    border: 1px solid #dddddd;
}
.bridgeBtnSmall {
    padding: 6px 14px;
    background: #0d2238;
    color: #ffffff !important;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}
.bridgeBtnSmall:hover {
    background: #ffb400;
    color: #0d2238 !important;
}
.bridgePanel {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.bridgeFormLabel {
    color: #444444;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}
.bridgeInput {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #cccccc;
    color: #333333;
    padding: 10px 15px;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}
.bridgeInput:focus {
    border-color: #ffb400;
}
.bridgeBtnSubmit {
    background: #0d2238;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}
.bridgeBtnSubmit:hover {
    background: #ffb400;
    color: #0d2238;
}
.bridgeFooter {
    background: #0d2238;
    border-top: 3px solid #ffb400;
    padding: 40px 20px;
    text-align: center;
}
.bridgeFooterLinks a {
    color: #bbbbbb;
    margin: 0 12px;
    font-size: 14px;
}
.bridgeFooterLinks a:hover {
    color: #ffb400;
}
.bridgeFooterLinks span {
    color: #444444;
}
.bridgeCopyright {
    color: #777777;
    font-size: 13px;
    margin-top: 15px;
}
@media (max-width: 1100px) {
    .bridgeGridSix { grid-template-columns: repeat(3, 1fr); }
    .bridgeRoundGrid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .bridgeGridSix { grid-template-columns: repeat(2, 1fr); }
    .bridgeYellowBox { grid-template-columns: repeat(2, 1fr); }
    .bridgeGridFour { grid-template-columns: repeat(2, 1fr); }
    .bridgeRoundGrid { grid-template-columns: repeat(2, 1fr); }
    .bridgeNavMenu { display: none; }
}
@media (max-width: 480px) {
    .bridgeGridSix { grid-template-columns: 1fr; }
    .bridgeYellowBox { grid-template-columns: 1fr; }
    .bridgeGridFour { grid-template-columns: 1fr; }
}
