body, html {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #2d3436;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}
a {
    color: #5bb343;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #4fa336;
}
.harmfulTopBar {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 8px 0;
    font-size: 13px;
    color: #636e72;
}
.harmfulTopWrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.harmfulHeader {
    background-color: #ffffff;
    border-bottom: 2px solid #5bb343;
    position: relative;
    z-index: 1000;
}
.harmfulNavWrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}
.harmfulLogo img {
    height: 42px;
    max-width: 160px;
    object-fit: contain;
    vertical-align: middle;
}
.harmfulNavMenu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.harmfulNavMenu li {
    margin: 0 8px;
}
.harmfulNavMenu li a {
    color: #2d3436;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 4px;
}
.harmfulNavMenu li a:hover, .harmfulNavMenu li.harmfulActive a {
    color: #ffffff;
    background: #5bb343;
}
.harmfulContainer {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 20px;
}
.harmfulSectionHeader {
    text-align: center;
    margin: 40px 0 25px 0;
}
.harmfulSectionTitle {
    font-size: 24px;
    color: #2d3436;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.harmfulSectionLine {
    width: 45px;
    height: 3px;
    background: #5bb343;
    margin: 0 auto;
    border-radius: 2px;
}
.harmfulHeroBox {
    background: linear-gradient(135deg, #f1f8ee 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid #e1eedc;
}
.harmfulHeroCard {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.harmfulHeroImg {
    width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 6px;
    background: #fdfdfd;
    flex-shrink: 0;
}
.harmfulHeroInfo {
    flex: 1;
    overflow: hidden;
}
.harmfulHeroTitle {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.harmfulRoundGrid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    margin-bottom: 35px;
}
.harmfulRoundCard {
    background: #ffffff;
    border: 1px solid #e9ecef;
    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;
}
.harmfulRoundCard:hover {
    transform: translateY(-3px);
    border-color: #5bb343;
}
.harmfulRoundImg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    background: #f4fbf1;
    margin-bottom: 8px;
}
.harmfulGridFive {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}
.harmfulCard {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    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;
}
.harmfulCard:hover {
    transform: translateY(-4px);
    border-color: #5bb343;
    box-shadow: 0 6px 18px rgba(91, 179, 67, 0.15);
}
.harmfulCardImg {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 12px auto;
}
.harmfulCardTitle {
    color: #2d3436;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.harmfulCardPrice {
    color: #e17055;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.harmfulCardBtn {
    display: block;
    background: #5bb343;
    color: #ffffff !important;
    padding: 6px 0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
}
.harmfulCardBtn:hover {
    background: #4fa336;
}
.harmfulGridThree {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.harmfulTableWrap {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.harmfulTable {
    width: 100%;
    border-collapse: collapse;
}
.harmfulTable th {
    text-align: left;
    padding: 12px 15px;
    color: #636e72;
    border-bottom: 1px solid #e9ecef;
    font-size: 13px;
    font-weight: 600;
    background: #f8f9fa;
}
.harmfulTable td {
    padding: 14px 15px;
    border-bottom: 1px solid #f1f2f6;
    color: #2d3436;
    font-size: 14px;
    vertical-align: middle;
}
.harmfulTable tr:hover td {
    background: #f9fdf8;
}
.harmfulBadge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
}
.harmfulBadgeAuto {
    background: rgba(91, 179, 67, 0.12);
    color: #5bb343;
    border: 1px solid #5bb343;
}
.harmfulBadgeManual {
    background: #f5f5f5;
    color: #777777;
    border: 1px solid #dddddd;
}
.harmfulBtnSmall {
    padding: 6px 14px;
    background: #5bb343;
    color: #ffffff !important;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}
.harmfulBtnSmall:hover {
    background: #4fa336;
}
.harmfulPanel {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.harmfulFormLabel {
    color: #2d3436;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}
.harmfulInput {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #dfe6e9;
    color: #2d3436;
    padding: 10px 15px;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}
.harmfulInput:focus {
    border-color: #5bb343;
}
.harmfulBtnSubmit {
    background: #5bb343;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}
.harmfulBtnSubmit:hover {
    background: #4fa336;
}
.harmfulFooter {
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    padding: 40px 20px;
    text-align: center;
}
.harmfulFooterLinks a {
    color: #636e72;
    margin: 0 12px;
    font-size: 14px;
}
.harmfulFooterLinks a:hover {
    color: #5bb343;
}
.harmfulFooterLinks span {
    color: #dfe6e9;
}
.harmfulCopyright {
    color: #b2bec3;
    font-size: 13px;
    margin-top: 15px;
}
@media (max-width: 992px) {
    .harmfulGridFive { grid-template-columns: repeat(3, 1fr); }
    .harmfulRoundGrid { grid-template-columns: repeat(4, 1fr); }
    .harmfulGridThree { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .harmfulGridFive { grid-template-columns: repeat(2, 1fr); }
    .harmfulRoundGrid { grid-template-columns: repeat(2, 1fr); }
    .harmfulGridThree { grid-template-columns: 1fr; }
    .harmfulNavMenu { display: none; }
}
