diff --git a/src/components/about/about.module.css b/src/components/about/about.module.css
index e0282ce..2861165 100644
--- a/src/components/about/about.module.css
+++ b/src/components/about/about.module.css
@@ -1,5 +1,5 @@
.about {
- padding: 120px 0;
+ padding: 80px 0;
& .title {
margin-bottom: 12px;
diff --git a/src/components/why-section/index.ts b/src/components/why-section/index.ts
new file mode 100644
index 0000000..e921490
--- /dev/null
+++ b/src/components/why-section/index.ts
@@ -0,0 +1 @@
+export { WhySection } from './why-section';
diff --git a/src/components/why-section/why-section.module.css b/src/components/why-section/why-section.module.css
new file mode 100644
index 0000000..5140379
--- /dev/null
+++ b/src/components/why-section/why-section.module.css
@@ -0,0 +1,42 @@
+.whySection {
+ padding-bottom: 80px;
+
+ & .title {
+ margin-bottom: 12px;
+ font-family: var(--font-display);
+ font-size: var(--font-lg);
+ font-weight: 600;
+ }
+
+ & .reasons {
+ display: grid;
+ margin-top: 24px;
+ gap: 20px;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+
+ & .icon {
+ display: flex;
+ width: 44px;
+ height: 44px;
+ align-items: center;
+ justify-content: center;
+ border: 1px solid var(--color-neutral-200);
+ border-radius: 12px;
+ margin-bottom: 12px;
+ background-color: var(--color-neutral-100);
+ color: #818cf8;
+ font-size: var(--font-lg);
+ }
+
+ & .label {
+ margin-bottom: 8px;
+ font-family: var(--font-heading);
+ font-weight: 600;
+ }
+
+ & .body {
+ color: var(--color-foreground-subtle);
+ line-height: 1.6;
+ }
+ }
+}
diff --git a/src/components/why-section/why-section.tsx b/src/components/why-section/why-section.tsx
new file mode 100644
index 0000000..d06e206
--- /dev/null
+++ b/src/components/why-section/why-section.tsx
@@ -0,0 +1,49 @@
+import { BiMoney, BiUserCircle, BiLogoGithub } from 'react-icons/bi/index';
+import { Balancer } from 'react-wrap-balancer';
+
+import { Container } from '@/components/container';
+
+import styles from './why-section.module.css';
+
+export function WhySection() {
+ const reasons = [
+ {
+ body: 'Moodist is a cost-free solution, offering you high-quality ambient sounds without any financial commitment.',
+ icon:
+