# Challenge Icon Cards
Category: problem
Description: Identifies common business pain points through descriptive cards, each featuring an icon and clear explanation.
## Implementation Context
- **Primary**: Use **SenangStart CSS** for the implementation.
- **Reference**: Tailwind CSS is provided for stylistic context only.
## SenangStart CSS Usage
To use SenangStart CSS, simply include the script in your HTML `
`:
```html
My App
Hello SenangStart!
Zero config, instant styling.
```
**Documentation**: [Getting Started Guide](https://bookklik-technologies.github.io/senangstart-css/guide/getting-started.html)
## SenangStart CSS Code
```html
<section layout="container" space="m-x:auto m-y:large p-x:medium-3x tw-lg:m-y:big-3x tw-lg:p-x:big-3x">
<div space="m-b:large" visual="text:center">
<div space="m-x:auto m-b:small max-w:[max-content] p-x:small p-y:tiny" visual="rounded:medium bg:blue-600">
<p visual="text-size:small font:tw-bold uppercase text:white">Pain Points</p>
</div>
<h2 space="m-b:medium" visual="text-size:grand font:tw-bold tw-lg:text-size:mega">
Common Challenges in Business Today
</h2>
<p visual="text-size:large tw-lg:text-size:big">
Businesses face numerous obstacles in the digital age. Here are the
key challenges we help solve.
</p>
</div>
<div layout="grid tw-lg:grid-cols:3" space="g:medium-3x">
<div space="p:medium-3x" visual="rounded:medium bg:neutral-100">
<div
layout="flex items:center justify:center" space="m-b:medium h:big-3x w:big-3x" visual="rounded:round bg:blue-600 text-size:huge text:white"
>
<i class="fas fa-clock"></i>
</div>
<h3 space="m-b:small" visual="text-size:big font:tw-bold">Time Management</h3>
<p visual="text-size:large">
Struggling to balance multiple tasks and deadlines, leading to
decreased productivity and missed opportunities.
</p>
</div>
<div space="p:medium-3x" visual="rounded:medium bg:neutral-100">
<div
layout="flex items:center justify:center" space="m-b:medium h:big-3x w:big-3x" visual="rounded:round bg:blue-600 text-size:huge text:white"
>
<i class="fas fa-chart-line"></i>
</div>
<h3 space="m-b:small" visual="text-size:big font:tw-bold">Resource Allocation</h3>
<p visual="text-size:large">
Inefficient distribution of resources resulting in waste and
increased operational costs.
</p>
</div>
<div space="p:medium-3x" visual="rounded:medium bg:neutral-100">
<div
layout="flex items:center justify:center" space="m-b:medium h:big-3x w:big-3x" visual="rounded:round bg:blue-600 text-size:huge text:white"
>
<i class="fas fa-users"></i>
</div>
<h3 space="m-b:small" visual="text-size:big font:tw-bold">Team Coordination</h3>
<p visual="text-size:large">
Lack of effective communication and collaboration tools leading to
misaligned objectives and duplicated efforts.
</p>
</div>
</div>
</section>
```
## Tailwind CSS Code
```html
<section class="container mx-auto my-8 px-6 lg:my-16 lg:px-16">
<div class="mb-8 text-center">
<div class="mx-auto mb-2 max-w-max rounded-lg bg-blue-600 px-2 py-1">
<p class="text-sm font-bold uppercase text-white">Pain Points</p>
</div>
<h2 class="mb-4 text-3xl font-bold lg:text-6xl">
Common Challenges in Business Today
</h2>
<p class="text-lg lg:text-xl">
Businesses face numerous obstacles in the digital age. Here are the
key challenges we help solve.
</p>
</div>
<div class="grid gap-6 lg:grid-cols-3">
<div class="rounded-lg bg-neutral-100 p-6">
<div
class="mb-4 flex h-16 w-16 items-center justify-center rounded-full bg-blue-600 text-2xl text-white"
>
<i class="fas fa-clock"></i>
</div>
<h3 class="mb-2 text-xl font-bold">Time Management</h3>
<p class="text-lg">
Struggling to balance multiple tasks and deadlines, leading to
decreased productivity and missed opportunities.
</p>
</div>
<div class="rounded-lg bg-neutral-100 p-6">
<div
class="mb-4 flex h-16 w-16 items-center justify-center rounded-full bg-blue-600 text-2xl text-white"
>
<i class="fas fa-chart-line"></i>
</div>
<h3 class="mb-2 text-xl font-bold">Resource Allocation</h3>
<p class="text-lg">
Inefficient distribution of resources resulting in waste and
increased operational costs.
</p>
</div>
<div class="rounded-lg bg-neutral-100 p-6">
<div
class="mb-4 flex h-16 w-16 items-center justify-center rounded-full bg-blue-600 text-2xl text-white"
>
<i class="fas fa-users"></i>
</div>
<h3 class="mb-2 text-xl font-bold">Team Coordination</h3>
<p class="text-lg">
Lack of effective communication and collaboration tools leading to
misaligned objectives and duplicated efforts.
</p>
</div>
</div>
</section>
```