53 lines
885 B
CSS
53 lines
885 B
CSS
.pricingPage {
|
|
padding-top: 5rem;
|
|
}
|
|
|
|
.faqHeader {
|
|
text-align: center;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.faqTitle {
|
|
font-size: 2.5rem;
|
|
color: var(--foreground);
|
|
}
|
|
|
|
.faqGrid {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.faqGrid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
.faqItem {
|
|
background: var(--background);
|
|
border-radius: var(--radius-xl);
|
|
padding: 2rem;
|
|
box-shadow: var(--shadow-md);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.faqItem:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: var(--shadow-xl);
|
|
}
|
|
|
|
.faqQuestion {
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
color: var(--foreground);
|
|
font-family: var(--font-display);
|
|
}
|
|
|
|
.faqAnswer {
|
|
color: var(--foreground-secondary);
|
|
line-height: 1.6;
|
|
} |