/* ==================================================
   CONDENSED HELP SECTION STYLES
   ================================================== */

/* 1. Parent Wrapper in index.html */
#help-condensed {
    width: 100%;
    display: flex;
    justify-content: center; 
    padding: 0 20px;
    box-sizing: border-box;
}

/* 2. Inner Container (Corrected to match About Us exactly) */
#help-condensed .about-container {
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    position: relative;
    /* Removed background: var(--bg-panel) */
    /* Removed border: 1px solid var(--border-steel) */
    /* Removed border-radius: 12px */
    padding: 20px;
    box-sizing: border-box;
}

/* 3. The Close 'X' Button */
#close-condensed-x {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-dim);
    line-height: 1;
    z-index: 1000;
    transition: color 0.2s ease;
}

#close-condensed-x:hover {
    color: var(--text-white);
}

/* 4. Brand Typography */
.brand-think { 
    color: var(--text-white); 
    font-weight: 800; 
}
.brand-sn { 
    color: var(--brand-blue); 
    font-weight: 800; 
}

/* 5. Button Centering & Styling */
#help-condensed .button-container {
    display: flex;
    justify-content: center; /* Centers the button horizontally */
    align-items: center;
    padding: 30px 0 10px 0;
    width: 100%;
}

#condensed-help-button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-white);
    background-color: var(--brand-blue);
    border: none;
    border-radius: 28px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

#condensed-help-button:hover {
    background-color: var(--brand-hover);
}

#condensed-help-button:active {
    transform: scale(0.98);
}

/* 6. Content Spacing (inherited from content-pages.css) */
#help-condensed .about-section h1,
#help-condensed .about-section h2 {
    font-weight: 700;
    color: var(--text-white);
    border-bottom: 1px solid var(--border-steel);
    padding-bottom: 10px;
    margin-top: 40px;
}

#help-condensed .about-section p {
    margin-bottom: 20px;
}