body, html {
    margin: 0;
    padding: 0;
    background-color: #f7f5f0;
    color: #2b2b2b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}
a {
    color: #8c937b;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #727a63;
}
.pushTopBar {
    background-color: #ffffff;
    border-bottom: 1px solid #eae6df;
    padding: 8px 0;
    font-size: 13px;
    color: #777777;
}
.pushTopWrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.pushHeader {
    background-color: #ffffff;
    border-bottom: 1px solid #eae6df;
    position: relative;
    z-index: 1000;
}
.pushNavWrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}
.pushLogo img {
    height: 40px;
    max-width: 160px;
    object-fit: contain;
    vertical-align: middle;
}
.pushNavMenu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.pushNavMenu li {
    margin: 0 8px;
}
.pushNavMenu li a {
    color: #2b2b2b;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.pushNavMenu li a:hover, .pushNavMenu li.pushActive a {
    color: #ffffff;
    background: #8c937b;
}
.pushContainer {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 20px;
}
.pushSectionHeader {
    text-align: center;
    margin: 40px 0 25px 0;
}
.pushSectionTitle {
    font-size: 24px;
    color: #2b2b2b;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.pushSectionLine {
    width: 40px;
    height: 2px;
    background: #bfa378;
    margin: 0 auto;
}
.pushHeroBox {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 35px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    border: 1px solid #eae6df;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.pushHeroCard {
    flex: 1;
    min-width: 280px;
    background: #faf9f6;
    border: 1px solid #eae6df;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.pushHeroImg {
    width: 80px;
    height: 90px;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    flex-shrink: 0;
}
.pushHeroInfo {
    flex: 1;
    overflow: hidden;
}
.pushHeroTitle {
    font-size: 16px;
    font-weight: 600;
    color: #2b2b2b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.pushGridTwo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.pushGridFive {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}
.pushGridFour {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.pushCard {
    background: #ffffff;
    border: 1px solid #eae6df;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pushCard:hover {
    transform: translateY(-4px);
    border-color: #8c937b;
    box-shadow: 0 6px 20px rgba(140, 147, 123, 0.15);
}
.pushCardImg {
    width: 65px;
    height: 75px;
    object-fit: contain;
    margin: 0 auto 12px auto;
}
.pushCardTitle {
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.pushCardPrice {
    color: #bfa378;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.pushCardBtn {
    display: block;
    background: #8c937b;
    color: #ffffff !important;
    padding: 7px 0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
}
.pushCardBtn:hover {
    background: #727a63;
}
.pushBtnSmall {
    padding: 6px 14px;
    background: #8c937b;
    color: #ffffff !important;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}
.pushBtnSmall:hover {
    background: #727a63;
}
.pushTableWrap {
    background: #ffffff;
    border: 1px solid #eae6df;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.pushTable {
    width: 100%;
    border-collapse: collapse;
}
.pushTable th {
    text-align: left;
    padding: 12px 15px;
    color: #777777;
    border-bottom: 1px solid #eae6df;
    font-size: 13px;
    font-weight: 600;
    background: #faf9f6;
}
.pushTable td {
    padding: 14px 15px;
    border-bottom: 1px solid #f3f0e9;
    color: #333333;
    font-size: 14px;
    vertical-align: middle;
}
.pushTable tr:hover td {
    background: #faf9f6;
}
.pushBadge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
}
.pushBadgeAuto {
    background: rgba(140, 147, 123, 0.12);
    color: #727a63;
    border: 1px solid #8c937b;
}
.pushBadgeManual {
    background: #f5f5f5;
    color: #777777;
    border: 1px solid #dddddd;
}
.pushPanel {
    background: #ffffff;
    border: 1px solid #eae6df;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.pushFormLabel {
    color: #333333;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}
.pushInput {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #d5cec5;
    color: #2b2b2b;
    padding: 10px 15px;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}
.pushInput:focus {
    border-color: #8c937b;
}
.pushBtnSubmit {
    background: #8c937b;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}
.pushBtnSubmit:hover {
    background: #727a63;
}
.pushFooter {
    background: #ffffff;
    border-top: 1px solid #eae6df;
    padding: 40px 20px;
    text-align: center;
}
.pushFooterLinks a {
    color: #777777;
    margin: 0 12px;
    font-size: 14px;
}
.pushFooterLinks a:hover {
    color: #8c937b;
}
.pushFooterLinks span {
    color: #d5cec5;
}
.pushCopyright {
    color: #999999;
    font-size: 13px;
    margin-top: 15px;
}
@media (max-width: 992px) {
    .pushGridFive { grid-template-columns: repeat(3, 1fr); }
    .pushGridFour { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .pushGridFive { grid-template-columns: repeat(2, 1fr); }
    .pushGridFour { grid-template-columns: 1fr; }
    .pushGridTwo { grid-template-columns: 1fr; }
    .pushNavMenu { display: none; }
}
