#helpcenter {
    padding: 60px 0;
    background-color: #f8f9fa;
}
#helpcenter h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}
.help-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.help-card {
    width: 32%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    box-sizing: border-box;
}
.help-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.help-dot {
    width: 10px;
    height: 10px;
    background-color: #3c7fff;
    border-radius: 50%;
    margin-right: 10px;
}
.help-title h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0;
}
.help-subtitle {
    font-size: 14px;
    color: #999;
    font-weight: normal;
    margin-left: 8px;
}
.help-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.help-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}
.help-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.help-list li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: block;
    transition: color 0.3s;
}
.help-list li a:hover {
    color: #3c7fff;
}
.help-more {
    text-align: right;
    margin-top: 15px;
}
.help-more a {
    color: #3c7fff;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}
.help-arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #3c7fff;
    border-right: 2px solid #3c7fff;
    transform: rotate(45deg);
    margin-left: 5px;
}
@media (max-width: 768px) {
    .help-container {
        flex-direction: column;
    }
    .help-card {
        width: 100%;
        margin-bottom: 20px;
    }
}