diff --git a/app/components/Challenges.tsx b/app/components/Challenges.tsx
index 14489ae..ed7d58d 100644
--- a/app/components/Challenges.tsx
+++ b/app/components/Challenges.tsx
@@ -17,7 +17,9 @@ export default function Challenges() {
           {challenges.map((challenge, index) => (
             <div key={index} className="flex flex-col items-center text-center">
               <challenge.icon className="w-16 h-16 text-[#fcac04] mb-4" />
-              <p className="text-lg font-semibold text-gray-800">{challenge.text}</p>
+              <p className="text-lg font-semibold text-gray-800">
+                {challenge.text}
+              </p>
             </div>
           ))}
         </div>
diff --git a/app/components/Context.tsx b/app/components/Context.tsx
index 7d9559a..1a1e54a 100644
--- a/app/components/Context.tsx
+++ b/app/components/Context.tsx
@@ -2,14 +2,16 @@ export default function Context() {
   return (
     <section className="py-16 px-4 sm:px-6 lg:px-8 bg-white">
       <div className="max-w-3xl mx-auto text-center">
-        <h2 className="text-3xl font-bold mb-4 text-[#009563]">Why Digitalization Matters</h2>
+        <h2 className="text-3xl font-bold mb-4 text-[#009563]">
+          Why Digitalization Matters
+        </h2>
         <p className="text-lg text-[#1D1D1D]">
-          Digital tools are key to operational efficiency, scalability, and access to financing for SMEs in the
-          Distributed Renewable Energy (DRE) sector. However, adoption remains low due to awareness and accessibility
-          barriers.
+          Digital tools are key to operational efficiency, scalability, and
+          access to financing for SMEs in the Distributed Renewable Energy (DRE)
+          sector. However, adoption remains low due to awareness and
+          accessibility barriers.
         </p>
       </div>
     </section>
   )
 }
-