/* ERP Consultants Benefits Page Styles */
/* Main Content Styles */
.article-content .main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.benefit-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #004080;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: #004080;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* UAE Features */
.uae-features {
    margin: 40px 0;
}

.feature {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #004080;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Case Study */
.case-study {
    background: #f8f9fa;
    border-left: 4px solid #004080;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 4px 4px 0;
}

.case-study h3 {
    color: #004080;
    margin-bottom: 10px;
}

.case-study p {
    color: #555;
    line-height: 1.6;
}

/* Checklist */
.checklist {
    margin: 30px 0;
}

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.check-item i {
    color: #28a745;
    margin-right: 10px;
    margin-top: 3px;
}

.check-item span {
    color: #444;
    line-height: 1.5;
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.comparison-table th, 
.comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tr:hover {
    background-color: #f1f1f1;
}

/* Professionals Lobby Advantage */
.pl-advantage {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.advantage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.step {
    position: relative;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #004080;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.5;
}

/* CTA Box */
.cta-box {
    background: #004080;
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.cta-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-box .btn-primary {
    background: white;
    color: #004080;
    border: none;
}

.cta-box .btn-primary:hover {
    background: #f1f1f1;
}

/* FAQ Section */
.faq-section {
    margin: 50px 0;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 15px 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-steps {
        grid-template-columns: 1fr;
    }
    
    .pl-advantage {
        padding: 20px;
    }
    
    .cta-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .article-hero .hero-content {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 30px;
    }
}