/* =====================================================
   HelpStar — Documents Page Styles
   ===================================================== */

.documents-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

/* ── Left Column (Instructions) ── */
.docs-heading-main {
    color: #00A87A; /* Green from screenshot */
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.docs-text-content {
    color: #1a1a2e;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.docs-list-simple {
    padding-left: 1.25rem;
    margin-bottom: 2.5rem;
}

.docs-list-simple li {
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.docs-subheading {
    color: #1a1a2e;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.btn-download-form {
    background-color: #0d4a45; /* Dark Green */
    color: #f59e0b; /* Gold/Yellow */
    border: 2px solid #f59e0b;
    border-radius: 50rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 3rem;
}

.btn-download-form:hover {
    background-color: #0a3a36;
    color: #fcd34d;
    border-color: #fcd34d;
}

.docs-long-instructions-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.docs-long-list {
    list-style-type: decimal;
    padding-left: 1.25rem;
}

.docs-long-list > li {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.docs-long-list ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.docs-long-list ul li {
    font-weight: 400;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

/* ── Right Column (Form) ── */
.docs-form-container {
    background: #fff;
    padding: 0 1rem;
}

.docs-form-label {
    font-weight: 700;
    color: #000;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.docs-form-input, 
.docs-form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.docs-form-input:focus, 
.docs-form-select:focus {
    outline: none;
    border-color: #cbd5e1;
}

.docs-form-label-small {
    font-size: 0.8rem;
    font-weight: 400;
    font-style: italic;
    color: #64748b;
    text-decoration: underline;
}

.docs-drag-drop-area {
    border: 2px dashed #cbd5e1;
    background-color: #f8fafc;
    border-radius: 0.25rem;
    padding: 3rem 1rem;
    text-align: center;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.docs-drag-drop-area:hover {
    background-color: #f1f5f9;
}

.docs-drag-drop-area i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.docs-signature-area {
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    border-radius: 0.25rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.docs-submit-btn {
    background-color: #0047fa; /* Blue from screenshot */
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 0.25rem;
    padding: 1rem;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 1rem;
}

.docs-submit-btn:hover {
    background-color: #0036cc;
}

.docs-form-footer {
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.docs-secured-by {
    text-align: center;
    font-size: 0.8rem;
    color: #333;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.docs-secured-by i {
    color: #0047fa;
    font-size: 1.2rem;
}
