body {
    font-family: 'Inter', sans-serif;
    background-color: #FDFBF8;
    color: #334155;
}
.nav-link {
    transition: color 0.2s ease-in-out;
}
.nav-link.active {
    color: #7732ff;
    font-weight: 600;
}
.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Roadmap Styles */
.roadmap-container {
    position: relative;
    padding: 2rem 0;
}
.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e2e8f0;
    transform: translateX(-50%);
}
.roadmap-item {
    position: relative;
    width: 50%;
    padding: 1rem 2rem;
    box-sizing: border-box;
}
.roadmap-item:nth-child(odd) {
    left: 0;
    padding-left: 4rem;
    text-align: right;
}
.roadmap-item:nth-child(even) {
    left: 50%;
    padding-right: 4rem;
    text-align: left;
}
.roadmap-dot {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 4px solid #e2e8f0;
    transform: translateY(-50%);
    z-index: 1;
}
.roadmap-item:nth-child(odd) .roadmap-dot {
    right: -10px;
    transform: translate(50%, -50%);
}
.roadmap-item:nth-child(even) .roadmap-dot {
    left: -10px;
    transform: translate(-50%, -50%);
}
.roadmap-item.active .roadmap-dot {
    border-color: #7732ff;
    background-color: #7732ff;
}
.roadmap-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}
.roadmap-item.active .roadmap-content {
    border-color: #7732ff;
}

/* FAQ Styles */
.faq-item {
    border-bottom: 1px solid #e2e8f0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    cursor: pointer;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 0;
}
.faq-answer p {
    margin-bottom: 1rem;
}
.faq-item.open .faq-answer {
    max-height: 300px; /* Adjust as needed */
    padding: 0.5rem 0 1.5rem 0;
}
.faq-toggle {
    transition: transform 0.3s ease-in-out;
}
.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}
/* Blog Post Content Styles */
.prose {
    color: #334155;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}
.prose h2 {
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
    font-weight: 700;
    color: #1e293b;
    margin-top: 2.5em;
    margin-bottom: 1em;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.4em;
}
.prose p {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}
.prose .lead {
    font-size: 1.25rem; /* 20px */
    line-height: 1.6;
    color: #475569;
    font-weight: 500;
}
.prose img {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    margin-top: 2em;
    margin-bottom: 2em;
}
.prose a {
    color: #7732ff;
    text-decoration: underline;
    font-weight: 500;
}
.prose a:hover {
    color: #5b28bf;
}
.prose blockquote {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    padding-left: 1em;
    border-left: 4px solid #a78bfa;
    font-style: italic;
    color: #475569;
}
.prose ul, .prose ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.5em;
}
.prose ul li, .prose ol li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    padding-left: 0.5em;
}
.prose ul {
    list-style-type: disc;
}
.prose ol {
    list-style-type: decimal;
}
.prose code {
    background-color: #f1f5f9;
    color: #475569;
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    font-size: 0.9em;
}
.prose pre {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 1em;
    border-radius: 0.5rem;
    overflow-x: auto;
}
.prose pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
}

/* Alternating Background Colors */
main.alternating > section:nth-child(odd),
main.alternating > div:nth-child(odd) {
    background-color: rgb(15 23 42);
}

main.alternating > section:nth-child(even),
main.alternating > div:nth-child(even) {
    background-color: rgb(248 250 252);
}

main.alternating > section:nth-child(1),
main.alternating > div:nth-child(1) {
    background-color: rgb(15 23 42);
}

main.alternating > section:nth-child(2),
main.alternating > div:nth-child(2) {
    background-color: rgb(248 250 252);
}

main.alternating > section:nth-child(3),
main.alternating > div:nth-child(3) {
    background-color: white;
}

main.alternating > section:nth-child(n+4):nth-child(odd),
main.alternating > div:nth-child(n+4):nth-child(odd) {
    background-color: white;
}

main.alternating > section:nth-child(n+4):nth-child(even),
main.alternating > div:nth-child(n+4):nth-child(even) {
    background-color: rgb(248 250 252);
}
