/* SEO Content Section Styles */
.seo-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.seo-content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.seo-content-header {
    margin-bottom: 50px;
}

.seo-content-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.seo-intro {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.seo-content-grid {
    margin-bottom: 50px;
}

.seo-content-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.seo-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.seo-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.seo-content-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.seo-content-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Comparison Section */
.comparison-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
}

.comparison-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.comparison-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.comparison-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px;
    font-weight: 600;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.total-row {
    background: #f8f9fa;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-col {
    font-weight: 500;
}

.taklino-col {
    text-align: center;
    color: #28a745;
}

.competitor-col {
    text-align: center;
    color: #dc3545;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px !important;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button i {
    color: #667eea;
    font-size: 1.2rem;
}

.accordion-button:not(.collapsed) i {
    color: white;
}

.accordion-body {
    padding: 25px;
    background: #f8f9fa;
    color: #495057;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seo-content-wrapper {
        padding: 30px 20px;
    }
    
    .seo-content-header h2 {
        font-size: 2rem;
    }
    
    .seo-content-card {
        padding: 20px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        padding: 8px 0;
    }
    
    .accordion-button {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .seo-content-section {
        padding: 40px 0;
    }
    
    .seo-content-wrapper {
        padding: 20px 15px;
    }
    
    .seo-content-header h2 {
        font-size: 1.8rem;
    }
    
    .comparison-section {
        padding: 20px;
    }
    
    .faq-section {
        padding: 40px 0;
    }
}