/**
 * Content Boxes and Visual Dividers for Marketing Pages
 */

/* Highlight boxes for important information */
.info-box {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.success-box {
    background: #f0f9f4;
    border-left: 4px solid #28a745;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.warning-box {
    background: #fff8e6;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.pricing-box {
    background: #fff;
    border: 2px solid #e9ecef;
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-box {
    background: #ffffff;
    border: 1px solid #e3e6ea;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
}

/* Section dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #dee2e6, transparent);
    margin: 40px 0;
}

.section-divider-thick {
    height: 2px;
    background: linear-gradient(to right, transparent, #adb5bd, transparent);
    margin: 10px 0 30px 0;
}

/* Comparison boxes */
.comparison-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
}

.comparison-box.highlight {
    background: #e7f3ff;
    border-color: #007bff;
}

/* Call-to-action boxes */
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    margin: 35px 0;
    border-radius: 10px;
    text-align: center;
}

.cta-box h3,
.cta-box h4 {
    color: white;
    margin-bottom: 15px;
}

.cta-box .btn {
    margin-top: 15px;
}

/* Stats boxes */
.stats-box {
    background: #fff;
    border: 2px solid #28a745;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    text-align: center;
}

.stats-box strong {
    display: block;
    font-size: 2em;
    color: #28a745;
    margin-bottom: 10px;
}

/* FAQ boxes */
.faq-question {
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 6px;
    border-left: 4px solid #6c757d;
}

/* Table styling improvements */
table {
    margin: 25px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

table td,
table th {
    padding: 12px 15px !important;
    border-bottom: 1px solid #e9ecef;
}

table tr:first-child td {
    background: #f8f9fa;
    font-weight: 600;
}

table tr:last-child td {
    border-bottom: none;
}

/* Bullet point improvements */
ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Strong text in lists */
ul li strong,
ol li strong {
    color: #212529;
}

/* Scenario boxes */
.scenario-box {
    background: #fff8dc;
    border: 1px solid #ffc107;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

.scenario-box h4 {
    color: #856404;
    margin-top: 0;
}
