body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: #f8f8f8; /* Lighter gray background */
    color: #333;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Adjusted for better alignment */
    padding: 15px;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-arrow {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    flex-basis: 30px; /* Give it a fixed basis */
}

h1 {
    font-size: 18px;
    font-weight: 600; /* Bolder title */
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

.help-list {
    padding: 0 15px; /* Add horizontal padding */
    margin-top: 20px;
}

.help-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px; /* Increased padding */
    background-color: #fff;
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 10px; /* Space between items */
    text-decoration: none;
    color: inherit;
    border: 1px solid #e5e5e5; /* Added border */
}

.help-item:first-child {
    border-top: none;
}

.help-item span {
    font-size: 16px;
}

.arrow {
    font-size: 18px; /* Slightly smaller arrow */
    color: #c7c7cc;
    font-weight: bold;
}

p {
    text-align: center;
    padding: 20px;
    color: #888;
}
