/* Main Styles */
.bizpal-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 20px;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.mission-header {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    border-radius: 8px;
}

.mission-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.mission-statement {
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 15px;
    line-height: 1.5;
}

.founder-note {
    font-style: italic;
    opacity: 0.9;
    font-size: 0.95rem;
    border-top: 1px dashed rgba(255,255,255,0.3);
    padding-top: 10px;
    margin-top: 10px;
}

.form-intro {
    text-align: center;
    margin-bottom: 25px;
}

.form-intro h3 {
    color: #1a2a6c;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-intro p {
    color: #555;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

input[type="text"], textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1.05rem;
    box-sizing: border-box;
    transition: border 0.3s;
    background: #f9f9f9;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit, .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 5px;
    transition: transform 0.3s;
}

.btn-submit:hover, .btn-action:hover {
    transform: translateY(-2px);
}

.icon {
    margin-right: 10px;
    font-size: 1.3rem;
}

#bizpal-report {
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.report-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #1a2a6c;
}

.report-header h2 {
    color: #1a2a6c;
    margin-bottom: 5px;
    font-size: 2rem;
}

.report-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 10px;
}

#report-content h3 {
    color: #b21f1f;
    border-left: 4px solid #b21f1f;
    padding-left: 12px;
    margin-top: 30px;
}

#report-content ul {
    padding-left: 25px;
    margin: 18px 0;
}

#report-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.failure-prevention {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #b21f1f;
}

.failure-prevention h3 {
    color: #b21f1f;
    margin-top: 0;
}

.report-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hidden {
    display: none;
}

#bizpal-loader {
    text-align: center;
    padding: 50px;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #1a2a6c;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.mission-note {
    max-width: 500px;
    margin: 30px auto 0;
    font-style: italic;
    color: #1a2a6c;
    font-weight: 500;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Add to existing styles */
.report-actions a.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 5px;
    transition: transform 0.3s;
    text-decoration: none;
}

.report-actions a.btn-action:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}
