.svc-full-wrapper {
    width: 100%;
    max-width: 1200px; /* Adjust based on your theme's max-width */
    margin: 40px auto;
    font-family: inherit;
    color: #1f2937;
}

.svc-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.svc-panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.svc-inputs-panel h3 {
    margin: 0 0 8px 0;
    font-size: 28px;
    color: #111827;
}

.svc-subtitle {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.svc-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.svc-input-group.full-width {
    grid-column: 1 / -1;
}

.svc-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.svc-input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.svc-input-group small {
    display: block;
    color: #6b7280;
    margin-top: 4px;
    font-size: 12px;
}

.svc-divider {
    grid-column: 1 / -1;
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 10px 0;
}

.svc-btn-main {
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    background-color: #111827;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.svc-btn-main:hover {
    background-color: #374151;
}

/* Results Panel Styling */
.svc-results-panel {
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.svc-result-card, .svc-gap-card, .svc-cta-card, .svc-success-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.svc-result-card h4, .svc-gap-card h4, .svc-cta-card h4 {
    margin: 0 0 16px 0;
    color: #4b5563;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.svc-velocity-numbers {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.svc-big-number {
    font-size: 32px;
    font-weight: 800;
    color: #10b981; /* Green for velocity */
    margin: 0;
}

.svc-gap-number {
    font-size: 32px;
    font-weight: 800;
    color: #ef4444; /* Red for gap */
    margin: 0;
}

.svc-cta-card {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.svc-highlight-box {
    background: #ffffff;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    margin: 16px 0;
    border: 2px dashed #93c5fd;
}

.svc-huge-number {
    font-size: 48px;
    font-weight: 900;
    color: #2563eb;
    margin: 8px 0;
    line-height: 1;
}

.svc-btn-cta, .svc-btn-cta-secondary {
    display: block;
    text-align: center;
    padding: 14px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    font-size: 16px;
    transition: background 0.2s;
}

.svc-btn-cta:hover { background-color: #1d4ed8; color: #ffffff;}

.svc-micro-copy {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin: 8px 0 0 0;
}

/* Responsive Design */
@media (max-width: 860px) {
    .svc-dashboard {
        grid-template-columns: 1fr;
    }
    .svc-input-grid {
        grid-template-columns: 1fr;
    }
}
/* --- BULLETPROOF FAQ SECTION (Overrides Theme Defaults) --- */
.svc-faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.svc-faq-section h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 8px;
    text-align: center;
}

.svc-faq-intro {
    text-align: center;
    color: #6b7280;
    margin: 0 auto 40px auto;
    font-size: 16px;
    max-width: 600px;
}

.svc-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.svc-faq-item {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    overflow: hidden;
    margin-bottom: 0 !important;
}

/* Forcing overrides on the theme's default button styles */
button.svc-faq-question {
    width: 100% !important;
    text-align: left !important;
    padding: 20px 24px !important;
    background-color: transparent !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    line-height: 1.5 !important;
    transition: background-color 0.2s ease !important;
}

button.svc-faq-question:hover {
    background-color: #f9fafb !important;
}

/* Accordion Plus/Minus Icons */
button.svc-faq-question::after {
    content: '+';
    font-size: 24px;
    color: #6b7280;
    font-weight: 400;
    transition: transform 0.3s;
}

.svc-faq-item.active button.svc-faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

/* Hiding and Showing the Answers */
.svc-faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
    padding: 0 24px;
    margin: 0;
}

.svc-faq-item.active .svc-faq-answer {
    max-height: 1000px; /* Allows it to expand */
    opacity: 1;
    padding: 10px 24px 24px 24px;
}

.svc-faq-answer p {
    margin: 0 0 16px 0 !important;
    color: #4b5563 !important;
    line-height: 1.6 !important;
    font-size: 15px !important;
}

.svc-faq-answer p:last-child {
    margin-bottom: 0 !important;
}