@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.prose {
    line-height: 1.8;
}

.prose h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose ul, .prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose img {
    margin-bottom: 1rem;
}

.rotate-180 {
    transform: rotate(180deg);
}

.faq-answer {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .prose img {
        float: none !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}