@@ -69,7 +69,7 @@ function WhyWorkWithUs({ lang }: { lang: SupportedLanguage }) {
6969 columns = { { base : 1 , sm : 1 , md : 3 , lg : 3 } }
7070 cardClassName = "rounded-[20px]"
7171 borderClassName = "card-border-gradient"
72- titleClassName = "text-white"
72+ titleClassName = "text-white md:text-lg "
7373 lang = { lang }
7474 />
7575 </ GridItemsSection >
@@ -131,8 +131,10 @@ function HowItWorks({ lang }: { lang: SupportedLanguage }) {
131131 ? "border-white/20 bg-[#2E2843] shadow-lg shadow-white/10 ring-1 ring-white/10"
132132 : "border-white/10"
133133 ) } >
134- < h3 className = "mb-1 font-semibold text-white" > { item . title } </ h3 >
135- < p className = "text-sm text-[#AFB0C3] text-muted-foreground" >
134+ < h3 className = "mb-1 text-xl font-semibold text-white" >
135+ { item . title }
136+ </ h3 >
137+ < p className = "text-base text-[#AFB0C3] text-muted-foreground" >
136138 { item . description }
137139 </ p >
138140 </ Card >
@@ -168,7 +170,9 @@ function WhatYouGet({ lang }: { lang: SupportedLanguage }) {
168170 className = "relative flex flex-col items-start justify-start gap-4 pl-6" >
169171 < div className = "absolute left-0 top-0 h-full w-[2px] bg-gradient-to-b from-transparent via-white/20 to-transparent" />
170172 < Image src = { item . icon } alt = { item . title } width = { 32 } height = { 32 } />
171- < p className = "text-sm text-white/90 md:text-base" > { item . title } </ p >
173+ < p className = "text-base font-semibold text-white/90 md:text-xl" >
174+ { item . title }
175+ </ p >
172176 </ div >
173177 ) ) }
174178 </ div >
@@ -191,7 +195,7 @@ function CaseStudies({ lang }: { lang: SupportedLanguage }) {
191195 cardClassName = "rounded-2xl mt-8"
192196 borderClassName = "card-border-gradient"
193197 categoryClassName = "bg-white/10 text-white"
194- titleClassName = "text-white"
198+ titleClassName = "text-white text=[22px] font-semibold "
195199 />
196200 < div className = "mt-8 flex w-full justify-center" >
197201 < GridItemsMoreButton
@@ -245,7 +249,7 @@ function Faqs({ lang }: { lang: SupportedLanguage }) {
245249 < AccordionItem key = { i } value = { `faq-${ i } ` } asChild >
246250 < Card className = "w-full border-none bg-[#1B1728] shadow-sm transition-all duration-300" >
247251 < CardHeader className = "px-4 py-2" >
248- < AccordionTrigger className = "flex w-full items-center justify-between gap-2 text-left text-xl font-medium text-white no-underline hover:no-underline focus:no-underline" >
252+ < AccordionTrigger className = "flex w-full items-center justify-between gap-2 text-left text-lg font-medium text-white no-underline hover:no-underline focus:no-underline md:text-[22px] " >
249253 { item . question }
250254 </ AccordionTrigger >
251255 </ CardHeader >
@@ -278,10 +282,10 @@ function CTASection({ lang }: { lang: SupportedLanguage }) {
278282 < div className = "absolute inset-0 bg-black/30" />
279283 </ div >
280284 < div className = "relative z-20 space-y-4 text-white md:space-y-6" >
281- < h2 className = "bg-gradient-to-b from-white to-[#0C1711] bg-clip- text text -center text-2xl font-semibold leading-[120%] tracking-[-0.02em] text-transparent drop-shadow-[0_2px_4px_rgba(0,0,0,0.6)] md:text-[48px]" >
285+ < h2 className = "text-center text-2xl font-semibold md:text-[48px]" >
282286 { inferenceaiCtaHeading ( lang ) }
283287 </ h2 >
284- < p className = "mx-auto max-w-xl text-white/90 drop-shadow-[0_1px_3px_rgba(0,0,0,0.5) ]" >
288+ < p className = "mx-auto max-w-xl text-lg md:text-[22px ]" >
285289 { inferenceaiCtaDesc ( lang ) }
286290 </ p >
287291 < GridItemsMoreButton
0 commit comments