body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Feather Icons */
i[data-feather] {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

@media (min-width: 640px) {
    i[data-feather] {
        width: 36px;
        height: 36px;
    }
}

/* FAQ Icons */
.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .faq-icon {
        width: 24px;
        height: 24px;
    }
}

/* Marquee Animation */
.marquee-container {
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 12px;
}

.marquee-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .marquee-image {
        width: 280px;
        height: 200px;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
