@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #f7fafc; /* Light gray background */
    color: #2d3748; /* Dark gray text */
    overflow-x: hidden;
}
img{
    object-fit: cover;
}
/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #4299e1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3182ce;
}
/* Styles for the accordion */
.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    color: #080d14; /* text-gray-800 */
    background-color: #ffffff; /* bg-white */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
    transition: background-color 0.3s ease;
}
.h-screen .absolute+div{
    position: relative;
    z-index: 3;
}
.accordion-header:hover {
    background-color: #f0f4f8; /* Lighten on hover */
}
.accordion-header .arrow-icon {
    transition: transform 0.3s ease;
}
.accordion-header.active .arrow-icon {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #ffffff; /* bg-white */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
    margin-top: -0.5rem; /* Adjust to sit behind header */
    color: #080d14;
}
.accordion-content.open {
    max-height: 200px; /* Adjust as needed for content height */
    padding: 1.5rem;
}