/* Custom Styles for Landing Page */

html {
    scroll-behavior: smooth;
}

/* Typography - Serif for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', Georgia, Cambria, 'Times New Roman', Times, serif;
}

.btn-primary {
    background-color: #6366F1;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 15px 20px 0px rgba(99, 102, 241, 0.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-icon {
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

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