/* TEST FILE - Check if this loads */
.guide-card {
    background: white !important;
    padding: 48px !important;
    border-radius: 24px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    border: 2px solid #e2e8f0 !important;
}

.guide-icon {
    width: 56px !important;
    height: 56px !important;
    background: #00d9d9 !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 24px !important;
}

.guide-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    margin-top: 48px !important;
}

@media (max-width: 1024px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr !important;
    }
}
