.elementor-7165 .elementor-element.elementor-element-40091dd{--display:flex;overflow:visible;}.elementor-7165 .elementor-element.elementor-element-6f950cc img{border-radius:10px 10px 10px 10px;box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.3);}/* Start custom CSS for text-editor, class: .elementor-element-e490f77 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

/* Main Container */
.wc-results-guide {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    line-height: 1.7;
    background: #fff;
    max-width: 100%;
}

/* Header - (Red Gradient for Urgency) */
.guide-header {
    background: linear-gradient(135deg, #c53030 0%, #742a2a 100%);
    color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.header-badge {
    background: #FFD700;
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.guide-header h1 {
    font-size: 2.2rem;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.intro-lead {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Steps */
.steps-container {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-top: 4px solid #0047AB;
    position: relative;
}

.step-num {
    background: #0047AB;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Status Cards Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.status-card {
    padding: 25px;
    border-radius: 12px;
    color: #333;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.status-card:hover { transform: translateY(-5px); }

/* Success Card */
.status-card.success {
    background: #e6fffa;
    border: 2px solid #38b2ac;
}
.status-card.success h3 { color: #234e52; margin-top:0; }

.action-required {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    border-left: 4px solid #e53e3e;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Fail Card */
.status-card.fail {
    background: #fff5f5;
    border: 2px solid #fc8181;
}
.status-card.fail h3 { color: #c53030; margin-top:0; }

/* Alert Boxes */
.alert-box {
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}
.alert-box.error { background: #fff5f5; border-left: 5px solid #c53030; }

.pro-tip { background: #2d3748; color: #fff; padding: 15px; border-radius: 8px; margin-top: 20px; }

/* FAQ Styling */
.wc-faq-wrapper {
    margin-top: 50px;
    border-top: 2px solid #eee;
    padding-top: 30px;
}
.faq-row {
    margin-bottom: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.faq-row summary {
    background: #f7fafc;
    padding: 15px;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    outline: none;
}
.faq-row summary::after { content: '+'; float: right; font-weight: bold; }
.faq-row[open] summary::after { content: '-'; }
.faq-text { padding: 15px; background: #fff; color: #555; }

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #c53030;
    color: white;
    text-align: center;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(197, 48, 48, 0.4);
    transition: 0.3s;
}
.cta-button:hover {
    background: #9b2c2c;
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .guide-header h1 { font-size: 1.5rem; }
    .steps-container { flex-direction: column; }
}/* End custom CSS */