/* About Page Styles */
.about-page {
    color: var(--text-color, #000);
    background-color: var(--bg-color, #fff);
    padding-top: 6rem; /* Start below the status bar */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    transition: all 0.3s ease;
}

.about-page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0; /* Reset margin-top */
    color: var(--text-color, #000);
}

.about-page p {
    font-size: 1rem;
    line-height: 1.6; /* Slightly reduced line height */
    margin-bottom: 1.5rem; /* Add spacing between paragraphs */
    text-align: left; /* Left-align text to avoid uneven spacing */
    max-width: 100%; /* Ensure text doesn't overflow */
    color: var(--text-color-secondary, #333); /* Slightly darker text for contrast */
    word-spacing: normal; /* Reset word spacing */
}

.back-button {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
    color: var(--text-color, #000);
    text-decoration: none;
    padding-top: 25px;
    transition: all 0.3s ease;
}

.content ul {
    list-style: none !important;
    /* padding-left: 0; */
    /* margin-left: -10px; */
    position: relative;
}

/* PERFECTLY ALIGNED CUSTOM BULLET */
.content li::before {
    content: "◇";
    position: absolute;
    left: 0.1em;
    color: var(--accent, #3a86ff); /* Use accent color from root */
    font-size: 1em;
}
