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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    line-height: 1.6;
    color: #1f2a44;
}

/* Animation classes for scroll */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom styling for sections */
section {
    scroll-margin-top: 80px;
}

/* Custom button styles */
.btn-accent {
    background-color: #ff9f43;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: rgba(255, 159, 67, 0.9);
}

/* FAQ transition */
.faq-content {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.faq-content.show {
    max-height: 500px;
}

/* Modal transition */
.modal {
    transition: opacity 0.3s ease;
}

/* Custom grid gap */
.grid-gap-6 {
    gap: 1.5rem;
}