# Feature Large Image
Category: feature
Description: Highlights a key service or feature with a dominant image and concise descriptive text for strong visual impact.
## 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">
<h1 space="w:[100%]" visual="text:center text-size:giant font:tw-bold tw-lg:text-size:giga">Premium Service</h1>
<div space="h:medium w:[100%]" visual="border-b-w:regular border:neutral-200"></div>
<div space="h:medium w:[100%]"></div>
<div layout="grid tw-lg:grid-cols:3" space="m-b:medium g:medium">
<div>
<h6 visual="text-size:huge font:tw-bold tw-lg:text-size:giant">Thousands of specialities</h6>
</div>
<div layout="tw-lg:col-span:2">
<p visual="text-size:big">More and more physicians are becoming certified in multiple specialties. Some medical specialties, like dermatology, ophthalmology, and anesthesiology, are often ranked among the best medical specialties for lifestyle.</p>
</div>
</div>
<div layout="relative overflow:hidden" visual="rounded:medium bg:gray-200">
<img src="https://placehold.co/800x500" space="w:[100%]" />
</div>
</section>
```
## Tailwind CSS Code
```html
<section class="container mx-auto my-8 px-6 lg:my-16 lg:px-16">
<h1 class="w-full text-center text-4xl font-bold lg:text-7xl">Premium Service</h1>
<div class="h-4 w-full border-b-2 border-neutral-200"></div>
<div class="h-4 w-full"></div>
<div class="mb-4 grid gap-4 lg:grid-cols-3">
<div>
<h6 class="text-2xl font-bold lg:text-4xl">Thousands of specialities</h6>
</div>
<div class="lg:col-span-2">
<p class="text-xl">More and more physicians are becoming certified in multiple specialties. Some medical specialties, like dermatology, ophthalmology, and anesthesiology, are often ranked among the best medical specialties for lifestyle.</p>
</div>
</div>
<div class="relative overflow-hidden rounded-lg bg-gray-200">
<img src="https://placehold.co/800x500" class="w-full" />
</div>
</section>
```