
/* Article Styling - White & Dark Red Theme */
.article-container {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #333;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Color Variables */
:root {
    --bocica-red: #8B0000; /* Dark Red - BOCICA Brand Color */
    --bocica-light-red: #B22222;
    --bocica-dark: #333333;
    --bocica-light: #f8f8f8;
    --bocica-border: #e0e0e0;
}

/* Typography */
h2 {
    color: var(--bocica-red);
    border-bottom: 2px solid var(--bocica-red);
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 600;
}

h3 {
    color: var(--bocica-dark);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.lead-paragraph {
    font-size: 1.2em;
    color: var(--bocica-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.highlight-term {
    color: var(--bocica-red);
    font-weight: 600;
}

.brand-red {
    color: var(--bocica-red);
    font-weight: 700;
}

/* Article Meta */
.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9em;
    border-bottom: 1px solid var(--bocica-border);
    padding-bottom: 15px;
}

.article-category {
    background: var(--bocica-red);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 500;
}

/* Featured Image */
.featured-image {
    margin: 30px 0;
    text-align: center;
}

.article-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.1);
}

.image-caption {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-card {
    background: white;
    border: 1px solid var(--bocica-border);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.15);
    border-color: var(--bocica-red);
}

.benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.column {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--bocica-border);
}

.section-badge {
    background: var(--bocica-red);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    margin-right: 10px;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 6px solid var(--bocica-red);
    margin: 40px 0;
}

/* Comparison Table */
.comparison-table {
    border: 1px solid var(--bocica-border);
    border-radius: 8px;
    overflow: hidden;
    margin: 30px 0;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--bocica-red);
    color: white;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-top: 1px solid var(--bocica-border);
}

.table-cell {
    padding: 15px;
    border-right: 1px solid var(--bocica-border);
}

.table-cell:last-child {
    border-right: none;
}

.high-cost {
    color: #d32f2f;
    font-weight: 600;
}

.low-cost {
    color: #388e3c;
    font-weight: 600;
}

/* Application List */
.application-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.application-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-left: 4px solid var(--bocica-red);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.list-description {
    display: block;
    color: #666;
    margin-top: 8px;
    font-size: 0.95em;
}

/* CTA Styles */
.cta-section {
    margin: 40px 0;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bocica-red);
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    border: 2px solid var(--bocica-red);
    margin: 10px;
}

.cta-button:hover {
    background: white;
    color: var(--bocica-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.25);
}

.cta-button.secondary {
    background: white;
    color: var(--bocica-red);
    border: 2px solid var(--bocica-red);
}

.cta-button.secondary:hover {
    background: var(--bocica-red);
    color: white;
}

.cta-button.large {
    padding: 18px 36px;
    font-size: 1.1em;
}

.cta-icon {
    font-size: 1.2em;
}

.cta-subtext {
    color: #666;
    font-size: 0.95em;
    margin-top: 10px;
}

.cta-box {
    background: white;
    border: 2px solid var(--bocica-red);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}

/* Testimonial Box */
.testimonial-box {
    background: white;
    border-left: 4px solid var(--bocica-red);
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    color: var(--bocica-red);
    font-weight: 600;
    margin-top: 15px;
    font-style: normal;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #fff8f8 0%, #fff 100%);
    border: 2px solid var(--bocica-red);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
}

.cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.cta-note {
    color: #666;
    font-size: 0.95em;
    margin-top: 20px;
}

/* Conclusion */
.conclusion-highlight {
    font-size: 1.3em;
    color: var(--bocica-red);
    text-align: center;
    font-weight: 600;
    padding: 20px;
    border-top: 2px solid var(--bocica-border);
    border-bottom: 2px solid var(--bocica-border);
    margin: 40px 0;
}

/* Article Tags */
.article-tags {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--bocica-border);
}

.tag-label {
    color: var(--bocica-red);
    font-weight: 600;
    margin-right: 15px;
}

.article-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 6px 15px;
    border-radius: 30px;
    text-decoration: none;
    margin: 5px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: var(--bocica-red);
    color: white;
    transform: translateY(-2px);
}

.brand-tag {
    background: var(--bocica-red);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-container {
        padding: 15px;
    }
    
    .benefits-grid,
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
    
    .comparison-table .table-header,
    .comparison-table .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-cell {
        border-right: none;
        border-bottom: 1px solid var(--bocica-border);
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Animation for page load */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.article-container {
    animation: fadeIn 0.6s ease-out;
}
