.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.faq-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.faq-box p {
    font-size: 12px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}
.faq-box h4 {
    font-size: 15px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}
.faq-box:hover {
    background: #e9ecef;
    transform: scale(1.05);
}
.faq-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.answer-box h4 {
    font-size: 26px;
    font-weight: 800;
    font-family: Arial, Helvetica, sans-serif;
}
.answer-box h5 {
    font-weight: 600;
}
.answer-box p, h5 {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
}
.answer-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.faq-step img {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    display: flex;
    justify-content: left;
}
#buttonbantuan .btn-primary {
    background: #1D7E05;
    color: #fff;
    font-weight: 700;
    margin-top: 30px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    display: flex;
    padding: 5px 15px;
    border-radius: 10px;
    transition: 0.3s;
    text-decoration: none;
    width: fit-content;
}
.btn-primary i {
    margin-right: 8px;
}
.btn-primary:hover {
    background: #004d00;
}
.search-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}
.search-btn {
    background-color: green;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}
.search-btn:hover {
    background-color: darkgreen;
}
.copy-btn {
    position: relative;
    display: inline-block;
}
.tooltip-text {
    visibility: hidden;
    opacity: 0;
    background-color: green;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 6px 10px;
    position: absolute;
    z-index: 1;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s;
    font-size: 13px;
    white-space: nowrap;
}
.tooltip-text::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent green transparent;
}
.copy-btn.show-tooltip .tooltip-text {
    visibility: visible;
    opacity: 1;
}