diff --git a/public/css/style.css b/public/css/style.css
index b9dbb25..cd1c504 100644
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -2499,4 +2499,63 @@ body {
background-color: #0056b3; /* Darker shade for hover */
+}
+
+#why-join-us {
+ padding: 60px 20px;
+ background-color: #f9f9f9;
+ text-align: center;
+}
+
+.section-title {
+ font-size: 32px;
+ font-weight: 700;
+ margin-bottom: 40px;
+ color: #333;
+}
+
+.cards {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ gap: 20px;
+}
+
+.card {
+ background-color: #fff;
+ border-radius: 12px;
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
+ padding: 20px;
+ width: 100%;
+ max-width: 300px;
+ transition: transform 0.3s, box-shadow 0.3s;
+}
+
+.card:hover {
+ transform: translateY(-10px);
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
+}
+
+.icon {
+ font-size: 40px;
+ margin-bottom: 15px;
+ color: #007BFF;
+}
+
+.card h3 {
+ font-size: 24px;
+ margin-bottom: 10px;
+ color: #333;
+}
+
+.card p {
+ font-size: 16px;
+ color: #666;
+}
+
+/* Responsive Design */
+@media (max-width: 768px) {
+ .cards {
+ flex-direction: column;
+ }
}
\ No newline at end of file
diff --git a/public/index.html b/public/index.html
index 364f813..fe20a50 100644
--- a/public/index.html
+++ b/public/index.html
@@ -8,7 +8,7 @@
-
+